<!-- Copyright 1999 by William and Mari Bontrager.
function PopupPicture(url,h,w,tl,bgcolor,textcolor) {
var title = '<br><b>' + tl + '</b>';
var hh = String(parseInt(h,10)+67);
if(tl.length < 1) title = '';
else hh = String(parseInt(hh) + parseInt((tl.length / (parseInt(w) / 7)) + 1) * 18);
var bbc = ' bgcolor="' + bgcolor + '"';
if(bgcolor.length < 1) bbc = '';
var ttc = ' text="' + textcolor + '"';
if(textcolor.length < 1) ttc = '';
var Properties = 'height=' + hh + ',width=' + String(parseInt(w,10)+25);
var pPicture = window.open('','',Properties);
pPicture.document.writeln('<html><head><title>' + tl + '<\/title>');
pPicture.document.writeln('<link rel="stylesheet" href="styles_popup.css" type="text/css" media="screen, projection" />');
pPicture.document.writeln('<script language="JavaScript">');
pPicture.document.writeln('<!-- ');
pPicture.document.writeln('function CloseMe() {');
pPicture.document.writeln('self.close();');
pPicture.document.writeln('}');
pPicture.document.writeln('\/\/ -->');
pPicture.document.writeln('<\/script>');
pPicture.document.write('<\/head><body ' + bbc + ttc + '" onBlur="CloseMe()">');
pPicture.document.write('<IMG SRC="' + url + '" width="' + w + '" height="' + h + '" border="1" class="popup" alt="' + tl + '">');
pPicture.document.write(title);
pPicture.document.write('<br /><br /><a href="javascript:window.close()">CLOSE WINDOW</a>');
pPicture.document.writeln('<\/body><\/html>');
}
//-->


