function parkaerial(theURL,winName,features,wnd_title) {
  w=window.open('',winName,features+',location=no,menubar=no,toolbar=no,status=no,resizable=no');
  w.document.writeln('<html><head><title>'+wnd_title+'</title>');
  w.document.writeln('<style>');
  w.document.writeln('body {margin:0; padding:0; background-repeat: no-repeat;}');
  w.document.writeln('.pictext {font-family: "Trebuchet MS",Arial,Helvetica; font-weight: bold; font-size: 13px; color: white}');
  w.document.writeln('.canvas {text-align: center; vertical-align: bottom;}');
  w.document.writeln('.transbox {width: 200px; background-color: #000; filter: alpha(opacity=50); opacity: 0.5; -moz-opacity: 0.5;}');
  w.document.writeln('</style></head>');
  w.document.writeln('<body style="background-image:url('+theURL+')">');
  w.document.writeln('<table border="0" cellspacing="0" cellpadding="0" width="100%" height="100%"><tr>');
  w.document.writeln('<td class="canvas" onClick="javascript:self.close()"><center>');
  w.document.writeln('<div class="transbox"><span class="pictext">&nbsp;Click on image to close window&nbsp;</span></div>');
  w.document.writeln('</center></td></tr></table>');
  w.document.writeln('</body></html>');
  w.document.close();
  return false;
}
