function popup(URL,WidTH,HEIGHT)
{
window.open(URL, "popup", "toolbar=no, location=no, directories=no, status=no, scrollbars=auto, resizable=yes, copyhistory=no, width="+WidTH+", height="+HEIGHT+", left=25, top=0");
}

function popupfull(URL)
{
window.open(URL, "popup", "toolbar=no, location=no, directories=no, status=no, scrollbars=auto, resizable=yes, copyhistory=no, width="+screen.width+", height="+screen.height+", left=0, top=0");
}