// JScript source code

function popupCalc(){
	openPopup('UVimagePop.asp?{UV_image_src}', 'image', 'no', 'no', '15', '15', '300', '300', 'resizable');
	return;
}

function openPopup(url, windowName, status, scrollbars, screenX, screenY, width, height, resizable) {
	if (navigator.appName == 'Netscape') {
		var popWindow = window.open(url,windowName,"status="+status+",scrollbars="+scrollbars+",screenX="+screenX+",screenY="+screenY+",width="+width+",height="+height+","+resizable);
	}
	else {
		var features = "status="+status+",scrollbars="+scrollbars+",top="+screenX+",left="+screenY+",width="+width+",height="+height+","+resizable;
		var popWindow = window.open(url,windowName,features);
	}
	popWindow.focus();
	return;		
}

