// JavaScript Document
function openwin(imgprod) {
	openimg = window.open(imgprod,"imgwindows","width=360, height=320,top=50,left=20,scrollbars=no, resize=no, toolbar=no, status=no, titlebar = no ");
	openimg.focus();
}
function outStock(fmaddcart) {
	if (fmaddcart.discontinue.value == "True" ) {
	alert("This product is out of stock, please come back again");
	return false;
	}
	else {
	return true
	}
}