/**
function mvBag(goodCode){
		document.location.href ="#scart";	    
		document.cartForm.gcd.value	= goodCode;
		document.cartForm.gcnt.value	= eval("document.cartForm.goods"+goodCode+".value");
		document.cartForm.submit();
	}
**/
	function mvBag(goodCode){
		var form = document.cartForm;
		var gCount = eval("form.goods"+goodCode+".value");
		//alert(goodCode);
		//alert(gCount);
		document.cartForm.gcd.value	= goodCode;
		document.cartForm.gcnt.value = gCount;
		document.cartForm.submit();
	}
    
    function rplcDate(strDate){
        var tempmon = new Number(strDate.substring(4,6));
        var tempday = new Number(strDate.substring(6,8));    
        document.write(tempmon+"/"+tempday);
    }

function goToPage(pageNo){
		var frm		= document.sgrpForm;
		frm.pageNo.value	= pageNo;
		frm.action			= "/gds/csearch.jsp";
		frm.submit();
	}
	function openFav(url){
		window.open(url);
}

function changeColor(goodId){
	var selectObject = document.getElementById("color_"+goodId);
	var hrefObject = document.getElementById("href_"+goodId);
	if(selectObject.value!=''){
		//alert(selectObject.value);
		hrefObject.href='javascript:mvBag1('+selectObject.value+','+goodId+')';
	}
}

function mvBag1(goodCode,goodsId){
		//if(document.getElementById("color_"+goodsId).value==''){
		//	alert("ÇëÑ¡ÔñÑÕÉ«£¡");
		//}else{
			document.location.href ="#scart";	    
			document.cartForm.gcd.value	= goodCode;
			document.cartForm.gcnt.value	= eval("document.cartForm.goods"+goodsId+".value");
			document.cartForm.submit();
		//}
		
	}
