function imagepopup(desktopURL){
        desktop =window.open(desktopURL,"name","toolbar=0,location=0,status=1,menubar=0,scrollbars=0,width=520,height=400,resizable=no");
        }

function winEs(desktopURL){
		desktop =window.open(desktopURL,"name","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width=400,height=490,resizable=no,screenX=20,screenY=20");
		}
			
function CloseWin()
{
window.top.close();
}
function PrintWin(){window.print()}


function winLg(desktopURL,winname){
winprops="toolbar=yes,location=no,status=no,menubar=no,scrollbars=yes,width=800,height=645,resizable=yes,screenX=20,screenY=20"
desktop =window.open(desktopURL,winname,config=winprops);
desktop.focus()
}