	function imageWin(Type,ImageID) {
		var url = "/content/ImageWin.asp?";
		
		var theWidth = 320;
		var theHeight = 245;
		
		// If this is a case study image
		if (Type == "C") {
			url += "CaseStudy_ImageID=" + ImageID;
			theHeight = 330;
		} else {
			url += "ImageID=" + ImageID;
		}
		
		var theTop=95;
		var theLeft=(screen.width/2)-320;
		var features="height="+theHeight+",width="+theWidth+",top="+theTop+",left="+theLeft+",scrollbars=no";
		theWin=window.open(url,"ImageWin",features);
		if (theWin == null) { alert('Please disable your popup blocker'); }
		else { theWin.focus(); }
	}