
function MaxMin(img)
{
    IncholOpenClose(img,'BasicInfoZone','220px','/app_themes/admin/images/system/expand.jpg','/app_themes/admin/images/system/extract.jpg','V');
}

function ShowDivById(div)
{
   var currdiv = document.getElementById(div);
   if(currdiv.style.display=="none")
      currdiv.style.display = "block";
   else
      currdiv.style.display = "none";
}

function ShowBigImage(link)
{
    strUrl = "ViewImage.aspx?path="+link;
  return window.open(strUrl, "_blank", "scrollbars=yes,status=no,resizable=yes,height=500,location=0,width=700,left=50,top=50");
}

function AddToCart(id, returnURL)
{
    var quantity = 1;
    if(document.getElementById('quantity')!=null)
        quantity = document.getElementById('quantity').value;
        
    var url = "/store/AddToCart.aspx?id="+id+"&q="+quantity+"&r="+returnURL;
    window.location = url;
    //var ajax = new IncholAJAX(url, "", "", "");
    //ajax.RemoteServer(ajax);
    //IncholAJAX.prototype.ProcessIncholOverride = ProcessIncholOverride;
}

function ProcessIncholOverride()
{
    var responseText = this.GetResponseText();
    if(responseText != "END")
    {
       //alert(responseText);
       alert("Item has been successfully added to your cart!");
       window.location.reload();
    }
    else
    {
        window.location.reload();
    }
}

function updateChildCategoryStatue(sender, childId, imagePlus, imageMinus)
{
    ShowDivById(childId);
    
    if(sender.src.toLowerCase().indexOf(imagePlus.toLowerCase()) >= 0)
    {
        sender.src = imageMinus;
    }
    else        
        sender.src = imagePlus;
}
