//
// Caterham Cart 
//
// copyright Caterham Computing - www.caterhamcomputing.com
//
function popupPage(width, height, page) {
	popupHeight = height + 15;
	popupWidth = width + 15;
	windowprops = "height="+popupHeight+",width="+popupWidth+",location=no,"
+ "scrollbars=yes,menubars=no,toolbars=no,resizable=yes";

	window.open(page, "Popup", windowprops);
	return false;
}
