﻿// JScript File

function switchImage(picture, caption, galleryGUID, isProduct, productGUID, productName, lblProductName, lnkAddToCart) {
      document.getElementById("ctl00_contentRight_imgPreview").src = "media/"+picture;
      document.getElementById("ctl00_contentRight_lblCaption").innerHTML = caption; 
      document.getElementById("ctl00_contentRight_hidGalleryGUID").value = galleryGUID;
      
      if (isProduct == 'True') {
        document.getElementById(lnkAddToCart).href = "Cart/?cmd=add&id="+productGUID;
        document.getElementById(lblProductName).innerHTML = productName;
        document.getElementById("addToCart").style.display = "inline";
      } else {
        document.getElementById("addToCart").style.display = "none";
      }
     
}

function rollOn(thumb1, img) {
       document.getElementById(img).src = "media/"+thumb1;
}

function rollOff(thumb2, img) {
       document.getElementById(img).src = "media/"+thumb2;
}

function PopupPic(sPicURL) 
{ 
    window.open("popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=200,WIDTH=200");
}

function IMPreview(sPicUrl, imgIMPreview, txtFileName)
{
   document.getElementById(imgIMPreview).src = "../../media/"+sPicUrl;
   document.getElementById(txtFileName).value = sPicUrl;
}


function openCart() {
window.document.forms[0].target='_blank';
window.location.href = '../itemadded/';
}