function addToCart(prodId) {
   clearStockInfo();
   eval("window.cartDetail.location='./cartDetail.aspx?action=add&prodId=" + prodId + "'");
   eval("this.location='#TOP'");
}

function changeCurrency(form, link, fileName) {
	var currID = form.options[form.selectedIndex].value;

	this.location.href = "./" + fileName + ".aspx?CurrId=" + currID + link;
}

function resetFrame() {
/*
   H = top.frames['cartDetail'].document.body.scrollHeight;
   document.getElementById('cartDetail').style.height = H;
*/
   var f = document.getElementById('cartDetail');
   f.style.height = f.contentWindow.document.body.scrollHeight + "px";
} 

function showStockInfo(inInfoText) {
   document.getElementById("stockInfo").innerText = inInfoText;
}

function clearStockInfo() {
   document.getElementById("stockInfo").innerText = "";
}


