
var	path, popHeight, popWidth, popImage;

function popWin(pName,pWidth,pHeight) {
	popImage=path + "/" + pName +".jpg";
	popWidth=pWidth;
	popHeight=pHeight;	

	var w=60+popWidth*1;
	var h=60+popHeight*1;
	var attr="width=" + w +
		",height=" + h +
		",toolbar=no" +
		",status=no" +
		",scrollbars=no" +
		",resizable=yes";
	var popWin=window.open("../popUp.htm","_blank",attr);
	popWin.focus();
}

