// JavaScript Document
<!--
	function PhotoWindow(imagename, imagewidth, imageheight)
	{
		var winwidth = String(140 + imagewidth);
		var winheight = String(100 + imageheight);
		var targetpage = 'photo_view.asp?IMG=' + imagename + '&IMGW=' + imagewidth + '&IMGH=' + imageheight;
		var controlstring = 'resizable=no,scrollbars=yes,width=' + winwidth + ',height=' + winheight
		win1=window.open(targetpage, 'Photo', controlstring);
		if (win1.opener == null) win1.opener=self;
		
	}
//-->