function alterImage(elem, img){
    elem.onerror = null;
    elem.src = img;
}

/* Goods Detail Page */
function openDtlWin(temp_url, w, h){
    if(w == null){
        w = 450;
    }
    if(h == null){
        h = 450;
    }
    var dw = window.open(temp_url, "large", "height=" + h + ",width=" + w + ",status=no,toolbar=yes,menubar=no,location=no,resizable=yes,scrollbars=yes");
    dw.focus();
    return false;
}

function moveToGoods(temp_url, shopNo, nowLangCd, grpId, att1, att2){
	
	var vParam = "";
	
	if (grpId.length > 0) {
		vParam += "-" + grpId;
		if (att1.length > 0) {
			vParam += "-" + att1;
			if (att2.length > 0) {
				vParam += "-" + att2;
			}
		}
	}
	
	location.href= temp_url + nowLangCd + "-" + shopNo + vParam;
}

