function openposter(url,name) {
var _w = null;
  _w = window.open('','','toolbar=no,location=yes,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width=350,height=550');
  _w.document.open();
  _w.document.write('<html><head><title>'+ name +'</title>');
  _w.document.write('<link href="/includes/style.css" rel="stylesheet" type="text/css"></head><body>');
  _w.document.write('<center><p><img src='+ url +'></p>');
  _w.document.write('<font class="bodyText"><strong>'+ name +'</strong></font><br>');
  _w.document.write('<input type=button value="Close Window" onClick=window.close()></center>');
  _w.document.write('</body></html>');
  _w.document.close();
}
