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

var faux = null;
var pic = new Image(); 
function viewResource(pic,title) { faux = window.open('','newWin','dependent,resizable=1,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 Transitional//EN" ');
  fd.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
  fd.write('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
  fd.write('<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
  fd.write('<meta http-equiv="content-language" content="en-us" /><meta name="author" content="Whotabs" />');
  fd.write('<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />');
  fd.write('<meta name="MSSmartTagsPreventParsing" content="true" />');
  fd.write('<link rel="stylesheet" href="http://www.thewho.net/whotabs/sitefiles/viewimages.css" type="text/css" />');
  fd.write('<title>Whotabs | Equipment Overview Photos</title></head>');
  fd.write('<body onLoad="window.focus()">');
  fd.write('<h1>' + title + '</h1>');
  fd.write('<div id="popupbody"><div class="popupphoto">');
  fd.write('<img src="' + 'http://www.thewho.net/whotabs/images/' + pic + '" alt="' + title + '" /></div></div>');
  fd.write('<div class="disclaimer"><hr /><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></div>');
  fd.write('<div class="windownav"><a href="javascript:self.close();">Close Window</a></div>');
  fd.write('</body></html>');
  fd.close();
}

//-->