var newPopUp='';
function popUp(URL) {
    if (newPopUp.open) { newPopUp.close(); }
    eval("newPopUp = window.open('" + URL + "', 'newPopUp1', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=250,left = 390,top = 250');");
}

function popUpEx(URL, width, height) {
    if (newPopUp.open) { newPopUp.close(); }
    eval("newPopUp = window.open('" + URL + "', 'newPopUp1', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,width=" + width + ",height=" + height + ",left = 390,top = 250');");
}

function popUpEx1(URL, width, height) {
    if (newPopUp.open) { newPopUp.close(); }
    eval("newPopUp = window.open('" + URL + "', 'newPopUp1', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=1,width=" + width + ",height=" + height + ",left = 390,top = 250');");
}

function CloseWindows()
{
    if (newPopUp.open) { newPopUp.close(); }
}


