function OpenNewWin(img,width,height,title)
{
sw=parseInt((screen.width-width)/2);
sh=parseInt((screen.height-height)/2);
if (navigator.appName == 'Netscape')
NewWind=window.open("", "_win", "width="+width+",height="+height+",screenY="+sh+",screenX="+sw+",resizable=no,location=no,menubar=no,scrollbars=no,status=no,directories=no,toolbar=no");
else
NewWind=window.open("", "_win", "width="+width+",height="+height+",top="+sh+",left="+sw+",resizable=no,location=no,menubar=no,scrollbars=no,status=no,directories=no,toolbar=no");

NewWind.document.write('<html>\n<head>\n<title>'+title+'</title>\n</head>\n');
NewWind.document.write('<body background='+img+'></body>\n</html>');
NewWind.focus();
NewWind.document.close();
}
