<!--
// A collection of routines for Water Features Pond Shop
// Routine to show product detail
function onShowProductDetail(TheProductItemId)
	{
	if (document.all.FormFieldImage1)
		document.all.FormFieldImage1.style.display = "none";
	document.all.FormPanelItemDetail.document.frames["FormPanelItemDetailInner"].location.href = "../Global/ProductItemDetail/ProductItemDetail.aspx?FormFieldProductItemId=" + TheProductItemId;
	document.all.FormPanelItemDetail.style.display = "block";
	}

// Routine to show product detail
function onShowProductDetailClose()
	{
	if (document.all.FormFieldImage1)
		document.all.FormFieldImage1.style.display = "block";
	document.all.FormPanelItemDetail.style.display = "none";
	if (document.all.FormFieldImage1)
		document.all.FormFieldImage1.style.display = "block";
	}


// Routine to show product detail
var WindowProductDetail;
function onShowProductDetailPopup(TheProductItemId)
	{
	var TheWinWidth = 320, TheWinHeight = 350;
	var TheWinLeft = parseInt((parseInt(screen.availWidth) - TheWinWidth) / 2);
	var TheWinTop = parseInt((parseInt(screen.availHeight) - TheWinHeight) / 2);
	var ThePopupLocation = "/PondShop/Global/ProductItemDetail/ProductItemDetail.aspx?FormFieldProductItemId=" + TheProductItemId;
	var TheWindowParams = "toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,statusbar=no,resizable=on,title=no,titlebar=no"
		+ ",width=" + TheWinWidth + ",height=" + TheWinHeight + ",left=" + TheWinLeft + ",top=" + TheWinTop;
alert(ThePopupLocation);
	if (WindowProductDetail && !WindowProductDetail.closed)
		WindowProductDetail.location = ThePopupLocation;
	else
		WindowProductDetail = window.open(ThePopupLocation,"WindowProductDetail",TheWindowParams);
	WindowProductDetail.focus();
	}

//-->