var browser = navigator.appName + ' ' + parseFloat(navigator.appVersion);

function ImageWindow(iSrc,width,height)
 {
	var win = null;
	if (win != null)
		win.document.clear();
	if (win)
		win.resizeTo(width,height);
	else
		win = window.open("about:blank","","width=" + width + ",height=" + height + ",toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no,left=100,top=100");
  with (win.document)
  {
	open();
	writeln("<html>");
	writeln("<" + "body style=\"margin: 0;\">");
	writeln("<img src=\"" + iSrc + "\">");
	close();
  }
}

function ShowDIV(divID) {
  if (browser.indexOf("Netscape 4")==0)
   document.layers[divID].display="inline"; 
  else 
   document.getElementById(divID).style.display= "inline";
 }
 function HideDIV(divID) {
  if (browser.indexOf("Netscape 4")==0)
   document.layers[divID].display="none";  
  else 
   document.getElementById(divID).style.display= "none";
 }
