
	
	function popupWindow(url,name,width,height,resize,scrollbars) {
		newwindow=window.open(url,name,'height='+height+',width='+width+',resizable='+resize+',scrollbars='+scrollbars);
		if (window.focus) {newwindow.focus()}
	}

	function popupWindowTwo(page, width, height) {
		newWindow = window.open(page, "productWindow",'height='+height+',width='+width+',resizable=yes,scrollbars=yes');
		if (window.focus) {newWindow.focus()}
	}
