// JScript source code

// Set the horizontal and vertical position for the popup

PositionX = 100;
PositionY = 100;

// Set these value approximately 20 pixels greater than the
// size of the largest image to be used (needed for Netscape)

defaultWidth  = 925;
defaultHeight = 380;


cookieWidth = 925
cookieHeight = 380

// Set autoclose true to have the window close automatically
// Set autoclose false to allow multiple popup windows

var AutoClose = true;

// Do not edit below this line...
// ================================
if (parseInt(navigator.appVersion.charAt(0))>=4){
var isNN=(navigator.appName=="Netscape")?1:0;
var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}
var optNN='resizable=yes,scrolling=auto,scrollbars=1,width='+cookieWidth+',height='+cookieHeight+',left='+PositionX+',top='+PositionY;
var optIE='resizable=yes,scrolling=auto,scrollbars=1,width=cookieWidth,height=cookieHeight,left='+PositionX+',top='+PositionY;

function popImage(imageURL,imageTitle,imageName,strImageNotAvail){
	if (isNN){imgWin=window.open('','',optNN);}
	if (isIE){imgWin=window.open('','',optIE);}
	with (imgWin.document){
	writeln('<html><head><title>Loading...</title><style>body{margin:0px;}</style>');writeln('<sc'+'ript>');
	writeln('var isNN,isIE;');writeln('if (parseInt(navigator.appVersion.charAt(0))>=4){');
	writeln('isNN=(navigator.appName=="Netscape")?1:0;');writeln('isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;}');
	writeln('function reSizeToImage(){');writeln('if (isIE){');writeln('window.resizeTo(cookieWidth,cookieHeight);');
	writeln('width=100-(document.body.clientWidth-cookieWidth);');
	writeln('height=100-(document.body.clientHeight-cookieHeight);');
	//writeln('alert("height" + height + "width" + width);');
	writeln('if (width<=520){window.resizeTo(cookieWidth,cookieHeight);}else{window.resizeTo(cookieWidth,cookieHeight);}}');writeln('if (isNN){');       
	writeln('window.innerWidth=cookieWidth;');writeln('window.innerHeight=cookieHeight;}}');
	writeln('function doTitle(){document.title="TCS - '+imageTitle+'";}');writeln('</sc'+'ript>');

	if (!AutoClose) writeln('</head><body bgcolor=FFFFFF scroll="no" onload="reSizeToImage();doTitle();self.focus()">')
	else writeln('</head><body bgcolor=FFFFFF scroll="auto" onload="reSizeToImage();doTitle();self.focus()" onblur="self.close()">');
		var img_obj = new Image();
		img_obj.src = (imageURL);

		var currentXY;

		currentXY = img_obj.width + img_obj.width;

		{
		writeln('<a href="javascript:window.close();"><img src='+imageURL+' style="display:block" border="0" align="center" ALT="Click to close '+imageName+'"></a></body></html>');
		close();		
		}
	}
}