function wineImagePopup(wineId,popupTitle){

	var popupWidth = 400;
	var popupHeight = 650;

	var top=(screen.height-popupHeight)/2;
	var left=(screen.width-popupWidth)/2;

	var imageURL = "/ochato/web/jsp/product/wineImageZoom.jsp?wineId="+wineId+"&popupTitle="+popupTitle;

	var options = "directories=no, menubar=no, status=no, location=no, scrollbars=no, resizable=no";
	
	window.open(imageURL,"","top="+top+",left="+left+",width="+popupWidth+",height="+popupHeight+","+options);
}

function packImagePopup(packId,popupTitle){

	var popupWidth = 650;
	var popupHeight = 440;

	var top=(screen.height-popupHeight)/2;
	var left=(screen.width-popupWidth)/2;

	var imageURL = "/ochato/web/jsp/product/pack/packImageZoom.jsp?packId="+packId+"&popupTitle="+popupTitle;

	var options = "directories=no, menubar=no, status=no, location=no, scrollbars=no, resizable=no";
	
	window.open(imageURL,"","top="+top+",left="+left+",width="+popupWidth+",height="+popupHeight+","+options);
}

function wineEvaluationPopup(wineId,popupTitle){
	var popupWidth = 830;
	var popupHeight = 650;

	var top=(screen.height-popupHeight)/2;
	var left=(screen.width-popupWidth)/2;

	var targetURL = "/ochato/evaluation.do?action=inputEvaluation&productId="+wineId;

	var options = "directories=no, menubar=no, status=no, location=no, scrollbars=no, resizable=no";
	
	window.open(targetURL,popupTitle,"top="+top+",left="+left+",width="+popupWidth+",height="+popupHeight+","+options);
}
