<!--
function openWindow(thePage, theWidth, theHeight, theWin, scrollBars) {

	if(!theWidth){
		var theWidth = "500";
	}
	
	if(!theHeight){
		var theHeight = "500";
	}
	
	if(!theWin){
		var theWin = "theWin";
	}
	
	if(!scrollBars){
		var scrollBars = "auto";
	}
				
	myWindow = window.open(thePage,theWin,'status=no,menubar=yes,toolbar=no,scrollbars=' + scrollBars + ',resizable=yes,width=' + theWidth + ', height=' + theHeight);
	myWindow.focus();
		
  }

function openWin(img) {
   winId = window.open('','newwin','menubar=0,location=0,toolbar=0,personalbar=0,status=0,scrollbars=1');
  winId.document.write('<html><head>');
  winId.document.write('<script language="JavaScript">');
  winId.document.write('var browserName=navigator.appName;');  
  winId.document.write('var browserVer=parseInt(navigator.appVersion); ');  
  winId.document.write('if (browserName=="Netscape" && browserVer>4){a = 54;b=30;} else if (browserName=="Netscape" && browserVer<=4){a = 0;b=0;} else {a = 55;b=30;}');
  winId.document.write('</script>');
  winId.document.write('</head><body marginheight=0 marginwidth=0 leftmargin=0 topmargin=0 onload="window.resizeTo(document.images[0].width+b,document.images[0].height+a)"><center>');
  winId.document.write('<img src="' + img + '">');
  winId.document.write('</center></body></html>');
  winId.document.close();
  winId.focus();
}
-->