//script to open a child window with an image loaded

var gNewWin;
var gNewImg;
var gImageName;

function OpenImage(ImageName){
	gNewWin=window.open('LgImage.htm','LargeImage','toolbar=no,dependant=yes,left=100,top=60,width=260,height=100');

	gImageName=ImageName;

	gNewWin.focus();

	gNewImg = new Image;
	gNewImg.onload=DisplayImage
	gNewImg.src='http://sammyboyproductions.com/images/'+gImageName+'L.jpg';
};

function DisplayImage(){
	gNewWin.document.writeln('<HTML>');
	gNewWin.document.writeln('<HEAD>');
	gNewWin.document.writeln('<TITLE>'+gImageName+'</TITLE>');
	gNewWin.document.writeln('</HEAD>');
	gNewWin.document.writeln('<BODY leftmargin=0 topmargin=13 marginwidth=0 marginheight=0 bgcolor="white">');
	gNewWin.document.writeln('<CENTER>');
	gNewWin.document.writeln('<IMG name="lImg" src="http://sammyboyproductions.com/images/'+gImageName+'L.jpg" border=0 alt="'+gImageName+'" OnLoad="javascript: window.resizeTo(lImg.width+30,lImg.height+175);" OnClick="javascript: window.close();">');
	gNewWin.document.writeln('<BR>');
	gNewWin.document.writeln('&nbsp;');
	gNewWin.document.writeln('<BR>');
	gNewWin.document.writeln('<INPUT type="button" value="Close Window" onClick="javascript: window.close();">');
	gNewWin.document.writeln('</CENTER>');
	gNewWin.document.writeln('</BODY>');
	gNewWin.document.writeln('</HTML>');
	gNewWin.document.close();
	gNewWin.focus();
};