function OpenBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
if(window.screen)if(isCenter)if(isCenter=="true"){
var myLeft = (screen.width-myWidth)/2;
var myTop = (screen.height-myHeight)/2; 
features+=(features!='')?',':'';
features+=',left='+myLeft+',top='+myTop;
}
window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

function openWin (name, target, width, height)

{

t=window.open('',target,"width="+width+", height="+height+",status=no,scrollbars=no,toolbar=no,menubar=no,location=no,left=50,top=50");

t.document.write("<title>Àéçîðýëü</title><body marginwidth=0 topmargin=0 leftmargin=0 marginheight=0><img src="+name+"></body>")      

}