function openwin(img,name,w,h)
{
   var winwidth=w+20;
   var winheight=h+50;
   var wc=window.open("", "newwin", "height="+winheight+", width="+winwidth+", screenX=100,screenY=0,left=100,top=0,toolbar=0,scrollbars=0,menubar=0,resizable=no");
   wc.document.write('<HTML>');
   wc.document.write('<HEAD>');
   wc.document.write('<title>');
   wc.document.write(name);
   wc.document.write('</title>');
   wc.document.write('<LINK HREF="style.css" REL="STYLESHEET" TYPE="TEXT/CSS">');
   wc.document.write('</HEAD>');
   wc.document.write('<BODY bgcolor="#ffecb1" align="top" topmargin=0>');
   wc.document.write('<center><table cellspacing="0" bgcolor="#F8ECB9" cellpadding="0" border="0" height="100%"><tr><td height="10"><img src="/img/trans.gif" height="10"></td></tr><tr><td align="center" align="middle"><a href="#" onClick="javascript:window.close()"><img src="');
   wc.document.write(img);
   wc.document.write('" border="0">');
   wc.document.write('</a></td></tr><tr><td align="center">');
   wc.document.write('<font class="main">');
   wc.document.write(name);
   wc.document.write('</font></td></tr>');
   wc.document.write('</table></center>');
   wc.document.write('</BODY>');
   wc.document.write('</HTML>');
   wc.focus();
}
