function openWin(url,what){
newwin=window.open(url,'','width=640,height=600,menubar=0,toolbars=0,scrollbars=1,status=0');
newwin.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">\n');
newwin.document.write('<html>\n<head>\n<title></title>\n<link href="css/style.css" rel="stylesheet" type="text/css">\n</head>\n<body style="background: #FFFFFF;">\n');
newwin.document.write('<table width="600" border="0" align="center" cellpadding="0" cellspacing="0" class="bgwhite" style="height:100%; background: #FFFFFF; padding: 20px;">\n<tr>\n<td>\n');
newwin.document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border-bottom: 1px solid #999999; margin-bottom: 20px;">\n');
newwin.document.write('<tr>\n');
newwin.document.write('<td><h2><a href="#" onclick="window.print()">^ Print</a></h2></td>\n');
newwin.document.write('<td align="right" style="margin-bottom: 10px;"><h2><a href="#" onclick="self.close()" >Close Window &gt;</a></h2>\n</td>\n');
newwin.document.write('</tr>\n');
newwin.document.write('</table>\n');
newwin.document.write(document.getElementById(what).innerHTML);
newwin.document.write('</td>\n</tr>\n</table>\n');
newwin.document.write('\n</body>\n</html>');
newwin.document.close();
}

