   function showpic(param, css)
   {
	self.document.open();
	self.document.write('<html><head><title></title>');
	self.document.write('<link rel=StyleSheet href="' + css + '/mystyle.css" type="text/css">');
	self.document.write('</head>');
	self.document.write('<body>');
	self.document.write('<br><br><br><center><div align=center>');
	self.document.write('<img src="' + param + '"><br><br>');
	self.document.write('<a href="javascript:history.back();">back</a>');
	self.document.write('</div></center>');
	self.document.write('</body></html>');
	self.document.close();
   }


