function showPicture(src) {
	window.open("./largeImg_view.asp?imgSrc="+src,"", "scrollbars=no, status=no, resizable=no, width=360, height=443");
}

function checkOrder(theform){
	if (theform.product_ea.value==0){
		alert("ÁÖ¹®¼ö·®À» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
		theform.product_ea.focus();
		return false;
	}else
		return true;
}

function directOrder(){
	if (document.order.product_ea.value==0){
		alert("ÁÖ¹®¼ö·®À» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
		document.order.product_ea.focus();
		return false;
	}
	document.order.action = "../cart/direct_view.asp";
	document.order.submit();
}

function onquot(){
	if (document.order.product_ea.value==0){
		alert("ÁÖ¹®¼ö·®À» ÀÔ·ÂÇØ ÁÖ½Ê½Ã¿À.");
		document.order.product_ea.focus();
		return false;
	}
	document.order.action = "../onquot/onquot.asp";
	document.order.submit();
}

function quantity_up(){
	frm = document.order;
	frm.product_ea.value = parseInt(frm.product_ea.value) + 1;
	price_check();
}

function quantity_down(){
	frm = document.order;
	if(frm.product_ea.value > 1)
		frm.product_ea.value = parseInt(frm.product_ea.value) - 1;
	price_check();
}