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;
}

// added the 9/9/2010 by Laurent for Kingstar
function MM_showHideLayers() {

  var i,p,v,obj,args=MM_showHideLayers.arguments;
  var divDescription = document.getElementById('divWatchDescription');
  for (i=0; i<(args.length-2); i+=3) 
  with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { 
    v=args[i+2];
    // if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }    
    // obj.visibility=v; 
    if (v=='hide') divDescription.innerHTML = "";
    else divDescription.innerHTML = obj.innerHTML;
    }
}

