/** 
 * Function Name: zoomProductImage(imgUrl)
 * @param Image URL will be sent from JSP to display in pop up window.
 * @author Valuebound
*/
var imgUrl = '';
var price = '';
var productDescription = '';
var productTitle = '';
function zoomProductImage(strimgUrl, strProductTitle, strPrice, strProductDesc) {
	imgUrl = "images/"+strimgUrl;
	price = strPrice;
	productDescription = strProductDesc;
	productTitle = strProductTitle;
	window.open("productZoomView.jsp",productTitle,"menubar=no,titlebar=no,resizable=no,scrollbars=yes,width=540,height=713,toolbar=no");
}

function zoomProductImageBundle(strimgUrl, strProductTitle, strPrice, strProductDesc) {
	imgUrl =document.getElementById("largeView").value;
//imgUrl = "images/"+strimgUrl;
	price = strPrice;
	productDescription = strProductDesc;
	productTitle = strProductTitle;
	window.open("productZoomView.jsp",productTitle,"menubar=no,titlebar=no,resizable=no,scrollbars=yes,width=540,height=713,toolbar=no");
}