function displaywindow(ImageName,w,h) {
		MyImage="url('"+ImageName+"');"
		
		w=600;
		h=630;
		imagename
		WinLeft = (screen.width - w) / 2;  
		WinTop = 0; //(screen.height - h) / 2;
		winFeatures = "toolbar=no,location=0,directories=0,status=0";
		winFeatures += ",menubar=0,scrollbars=0,resizable=no"; //yes";
		winFeatures += ",screenX="+WinLeft+",screenY="+WinTop;
		winFeatures += ",left="+WinLeft+",top="+WinTop;
		winFeatures += ",height="+h+",width="+w;
		PopUpWindow=window.open("","PopUpWindow",winFeatures);
		PopUpWindow.document.writeln('<html>');
		PopUpWindow.document.writeln('<head>');
		PopUpWindow.document.writeln('<title>ZWAGRA</title>');
		PopUpWindow.document.writeln('<link rel="stylesheet" type="text/css" href="stylerap.css">');
		PopUpWindow.document.writeln('</head>');
		
		   PopUpWindow.document.writeln('<body topmargin="0" leftmargin="0" background="images/fback.jpg">');
		   PopUpWindow.document.writeln('<center>');
		   PopUpWindow.document.writeln('<table border="1" cellpadding="0" cellspacing="0" style="background-position: center top; border-collapse: collapse; background-image:'+MyImage+'background-repeat:no-repeat" bordercolor="#DBE4FD" width="100%" id="AutoNumber1" height="600">');
		   PopUpWindow.document.writeln('<tr><td width="100%" valign="bottom" style="border-style: none; border-width: medium"><p align="center">');
		   PopUpWindow.document.writeln("<form id=form1 name=form1><input type=button onClick='self.close();' value='Close' id=button1 name=button1 class='formimg' ></form>");
		PopUpWindow.document.writeln('</p></td></tr></table></center></body>');
		PopUpWindow.document.writeln('</html>');
		PopUpWindow.document.close();
		PopUpWindow.focus();
	}
function newwin() {

window.open('Cer', 'cer.htm','toolbar=yes,location=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=yes,width=600,height=630')

}

