 var W;
 
 function OpenDynamic(mypic)
 {
	CloseIt();
 	var properties = 'height=360,width=280';
	W = window.open("","Example",properties);
	W.document.writeln('<html><head><link rel="Stylesheet" href="main.css" type="text/css"><title>' + mypic + '</title></head>');
	W.document.writeln('<body background="ptd_images/pop_win_bg.gif" leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
	W.document.writeln('<center><img src="ptd_images/pop_win_logo.gif" border=0><br><br></center>');
	W.document.writeln('<center><img src="ptd_images/' + mypic + '" border=0><br>');
	W.document.writeln('<br><p class=main><a href=JAVASCRIPT:this.close()>Close Window</a></p></center>');
	W.document.writeln('</body></html>');
 }
 function CloseIt()
 {
	 if(W != null)
	 {
		 W.close();
	 }
 }