<!--
// this script creates a javascript popup window for viewing images

var faux = null;
var url = new Image(); 
function viewgallery(url,title) { faux = window.open('','newWin','resizable=1,status=0,location=0,scrollbars=1,top=20,left=20,width=550,height=400');
  var fd = faux.document;
  //fd.open();
  fd.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ');
 // fd.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
  fd.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n');
  fd.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">\n');
  fd.write('<head>\n<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n');
  fd.write('<meta http-equiv="content-language" content="en-us" />\n<meta name="author" content="Whotabs" />\n');
  fd.write('<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />\n');
  fd.write('<meta name="robots" content="noindex,nofollow" />\n');
  fd.write('<meta name="MSSmartTagsPreventParsing" content="true" />\n');
  fd.write('<style type="text/css">@import url("http://www.thewho.net/whotabs/sitefiles/viewimages.css");</style>\n');
//  fd.write('<link rel="stylesheet" href="http://www.thewho.net/whotabs/sitefiles/viewimages.css" type="text/css" />');
  fd.write('<script type="text/javascript" src="http://www.thewho.net/whotabs/sitefiles/pv.js"></script>\n');
  fd.write('<title>' + title + ' | Equipment Overview Photos | Whotabs</title>\n</head>\n');
  fd.write('<body onload="window.focus()">\n');
  fd.write('<h1>' + title + '</h1>\n');
  fd.write('<div id="popupbody">\n  <div class="popupphoto">\n');
  fd.write('    <img src="' + url + '" alt="' + title + '" />\n  </div>\n</div>\n');
  fd.write('<div class="disclaimer">\n<hr />\n  <p>This information, along with all other content included in Whotabs, is intended for private study, scholarship or research. Associated images are included for reference only and are the property of the original owner.</p>\n</div>\n');
  fd.write('<div class="windownav"><a href="javascript:self.close();">Close Window</a></div>\n');
  fd.write('</body>\n</html>');
  fd.close();
}

//-->