
function shoppingCart(prCode, templateID)  {
  var url;

  if(templateID == null || templateID == "")  {
    url = "http://www.templatehelp.com/preset/cart.php?pr_code=" + prCode;
  }
  else  {
    url = "http://www.templatehelp.com/preset/cart.php?pr_code=" + prCode + "&act=add&templ=" + templateID;
  }

  var hwnd = window.open(url, "cart", "resizable=yes, location=no, menubar=no, status=no, scrollbars=yes, width=800, height=600");
  //self.close();
}


function Replay(id,url){
  document.getElementById(id).src=url;
}

function customize()  {
  var customizeDiv = document.getElementById("customizeForm");
  var buyTemplate = document.getElementById("buyTemplate");

  customizeDiv.style.top = (findPosY(buyTemplate)-5) + "px";
  customizeDiv.className = "customize";
}

function specialOffer()  {
  customize();
}

function closeCustomize()  {
  var customizeDiv = document.getElementById("customizeForm");

  customizeDiv.className = "hide";
}
