//	popup window for catalogue detail shots
function gallery_popup(galleries_idx, images_idx) {
	images_popup = window.open("gallery_popup.php?gallery=" + galleries_idx + "&image=" + images_idx, "", "width=600,height=565,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
	images_popup.document.close();
}

function order_form_popup(action) {
	order_popup = window.open("order_form.php?" + action, "ab_order_form", "width=700,height=538,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no");
	order_popup.document.close();
}

function num_product(products_idx, linens_idx) {
	//	grab new quantity from user
	quantity = parseInt(window.prompt("Enter the new quantity.", ""));
	
	if(!isNaN(quantity) && quantity != "") {
		window.location.replace("order_form.php?num_product=" + products_idx + "&linen=" + linens_idx + "&quantity=" + quantity);
	}
}

function popup_close(target) {
	target.close();
}