function imageBig(itemID, imageID) {
	newURL = "itemViewImage.php?itemID=" + itemID + "&imageID=" + imageID;
	newWindow = window.open(newURL, 'imageBig', 'width=1000,height=650,left=0,top=0, toolbar=no,scrollbars=yes,resizable=no');
	newWindow.focus();
}


function wishListAdd(itemID) {
	tmpScript.src = "process.php?itemMode=wishListAdd&itemID=" + itemID;
}

function recommend(itemID) {
	tmpScript.src = "process.php?itemMode=recommend&itemID=" + itemID;
}

function itemRecommand(itemID) {
	newURL = "itemRecommand.php?itemID=" + itemID;
	newWindow = window.open(newURL, 'itemRecommand', 'width=450,height=500,left=100,top=50, toolbar=no,scrollbars=auto,resizable=no');
	newWindow.focus();
}


function itemPrint(itemID) {
	newURL = "itemPrint.php?itemID=" + itemID;
	newWindow = window.open(newURL, 'itemPrint', 'width=620,height=600,left=100,top=50, toolbar=no,scrollbars=auto,resizable=no');
	newWindow.focus();
}

function imageBigView(itemID, imageID, width, height) {

	//width = 730;
	//height = 650;
	width = 820;
	height = 780;
	screenMaxWidth = screen.availWidth;
	screenMaxHeight = screen.availHeight;

	if(width > screenMaxWidth) {
		width = screenMaxWidth;
	}
	if(height > screenMaxHeight) {
		height = screenMaxHeight;
	}

	leftValue = (screenMaxWidth / 2 - width / 2);
	topValue = (screenMaxHeight / 2 - height / 2);  

	windowOption = "width=" + width + ",height=" + height + ",left=" + leftValue + ",top=" + topValue + ",toolbar=no,scrollbars=no,resizable=no";
	//windowOption = "width=300,height=300,left=0,top=0,toolbar=no,scrollbars=yes,resizable=no";

	newURL = "/products/itemViewImage.php?itemID=" + itemID + "&imageID=" + imageID;
	newWindow = window.open(newURL, 'itemPrint', windowOption);
	newWindow.focus();
}


function specCompare(form) {

	if(form.cateID1.value > 0) {
		newURL = "";
		newWindow = window.open(newURL, 'spec', 'width=950,height=600,left=50,top=50, toolbar=no,scrollbars=auto,resizable=no');
		newWindow.focus();

		form.target = "spec";
		form.action = "/products/specCompare.php";
		form.submit();
	} else {
		alert("ÀüÃ¼ °Ë»ö½Ã ½ºÆåºñ±³ÇÏ±â ±â´ÉÀ» »ç¿ëÇÏ½Ç ¼ö ¾ø½À´Ï´Ù. ½ºÆåºñ±³ÇÏ±â´Â ´ëºÐ·ù ¼±ÅÃ ÈÄ ÀÌ¿ëÇÏ¿© ÁÖ½Ê½Ã¿À!!");
	}

}


function noImage(obj) {
	obj.src = "/images/noImageProducts.gif";
}
