﻿// JScript File
<!--
var detect = navigator.userAgent.toLowerCase();
function checkIt(string)
{
	place = detect.indexOf(string) + 1;
	return place;
}
function openImageWindow(imageSrc,imageTitle)
{
var T="<HTML><head><SCRIPT  LANGUAGE=javascript>function specialInit(){window.resizeTo(document.images[0].width + ";
 if (checkIt('msie'))
	T+="60 ,document.images[0].height + 150);";
 else
 	T+="55 ,document.images[0].height + 125);";
imageTitle = "&nbsp;";	
T+="}</SCRIPT></head><BODY onLoad='specialInit()'><center>"+imageTitle+"<P><IMG  SRC="+imageSrc+"><P><FORM><INPUT TYPE=button VALUE=Close onClick=window.close()></FORM></center></BODY></HTML>";
  myWindowHandle=window.open("",null,'directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes');
  myWindowHandle.document.open();
  myWindowHandle.document.write(T);
  myWindowHandle.document.close();
  myWindowHandle.focus();
}
//-->

  


