<!-- hide script from old browsers

function showpic(pic,desc,w,h,print) 
{
 ht=h+70;
wt=w+30;

 PicWin = window.open( "", "Pic","width="+wt+",height="+ht+",toolbar=no,location=no,menubar=no,resizable=no,scrollbars=yes");  
  PicWin.document.write('<html><head><title>'+ desc + '</title>');
  PicWin.document.write('</head>');	
  PicWin.document.write('<BODY onResize="resize()" onLoad="window.focus()" BGCOLOR=#FFFFFF topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
  PicWin.document.write('<center><font size=2>');
  PicWin.document.write('<form>');
  PicWin.document.write('<img src="'+ pic + '" ' + 'border="1"><br>'+desc);
  PicWin.document.write('<br><input type="button" value="Close" onClick="window.close()">');
  if (print=="y" || print=="Y") {
  PicWin.document.write('<input type="button" value="Print" onClick="window.print()"></form>');
  }
  PicWin.document.write('</body></html>');	
  PicWin.document.close();	
	
 if (navigator.appName.substring(0,8) == "Netscape") 
   PicWin.focus();

}

// -->