
	<!--
	function OpenLargeWindow(imageid,x,y,s) {
	    maxwidth=600;
		maxheight=400;
	
	 	if ((x > maxwidth) && (y > maxheight)) {
	    	y = y + 34;
			xsizepercent = maxwidth / x;
			ysizepercent = maxheight / y;
			if (xsizepercent > ysizepercent) {
				x = x * xsizepercent;
				y = y * xsizepercent;	
				window.open("http://cim.pennnet.com/articles/enlarge_image.cfm?IMAGE_ID=" + imageid + "&SITE_ID=" + s,imageid,"width=" + x + ",height=" + y + ",resizable=yes,status=no,scrollbars=yes,titlebar=0");
			}
			else {
				x = x * ysizepercent;
				y = y * ysizepercent;	
				window.open("http://cim.pennnet.com/articles/enlarge_image.cfm?IMAGE_ID=" + imageid + "&SITE_ID=" + s,imageid,"width=" + x + ",height=" + y + ",resizable=yes,status=no,scrollbars=yes,titlebar=0");
			}
		}
		else if (x > maxwidth) {
			y = y + 34;
			sizepercent = maxwidth / x;
			x = x * sizepercent;
			y = y * sizepercent;
	       	window.open("http://cim.pennnet.com/articles/enlarge_image.cfm?IMAGE_ID=" + imageid + "&SITE_ID=" + s,imageid,"width=" + x + ",height=" + y + ",resizable=yes,status=no,scrollbars=yes,titlebar=0");
	    }
		else if (y > maxheight) {
			y = y + 34;
			sizepercent = maxheight / y;
			x = x * sizepercent;
			y = y * sizepercent;
	        window.open("http://cim.pennnet.com/articles/enlarge_image.cfm?IMAGE_ID=" + imageid + "&SITE_ID=" + s,imageid,"width=" + x + ",height=" + y + ",resizable=yes,status=no,scrollbars=yes,titlebar=0");
	    }
		else {
			y = y + 34;
	 		window.open("http://cim.pennnet.com/articles/enlarge_image.cfm?IMAGE_ID=" + imageid + "&SITE_ID=" + s,imageid,"width=" + x + ",height=" + y + ",scrollbars=no,titlebar=no");
	    }
	}
	-->
