<!-- Begin
function winPOPnomenu(url,windowName,winWidth,winHeight,ScrollYes) {
	if(ScrollYes != 1) ScrollYes = 0;
	if(url.indexOf("dsp_popup_largepic.cfm") > 0) ScrollYes = 1;
	etcString = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=" + 
				ScrollYes + 
				",copyhistory=0,width=" + 
				winWidth + 
				",height=" + 
				winHeight +
				",top=10,left=10";
	popWin = window.open(url,windowName,etcString);
	popWin.focus()
	}
-->