var popupWindow;
function personalizeIt(productId)
{
    if (popupWindow) 
      popupWindow.close();
      
	var url="/eshop/ProductAction.do?method=personalizeProduct&product.productId="+productId;
	// window.location.href=url;
	popupWindow=window.open(url,"zoomProduct","scrollbars=no,width=800,height=600,resizable=no,top=40,left=200,status=1");
}

function productDetail(productId)
{
    if (popupWindow) 
      popupWindow.close();
      
	var url="/eshop/ProductAction.do?method=productDetail&product.productId="+productId;
	popupWindow=window.open(url,"zoomProduct","scrollbars=no,width=600,height=450,resizable=no,top=40,left=200,status=1");
}

function continueShopping()
{
	var url="http://www.pacific-concepts.com/index.php?id=443";
	window.location.href=url;
}

function showCart()
{
	var url="http://www.pacific-concepts.com/index.php?id=444";
	window.location.href=url;
}