﻿// *** NONE OOP OBJECTS/FUNCTIONS *** //
function showElement( theId )
{
    if (document.getElementById)
    {
        //document.getElementById(theId).className = 'show';
        document.getElementById(theId).style.display = 'block';
    }
    return false;
}

function hideElement( theId )
{
    if (document.getElementById)
    {
        //document.getElementById(theId).className = 'hide';
        document.getElementById(theId).style.display = 'none';
    }
    return false;
}

function ShowHideElement( theId )
{
    if(document.getElementById(theId).style.display == 'block')
        document.getElementById(theId).style.display = 'none';
    else
        document.getElementById(theId).style.display = 'block'

    return false;
}

function ShowPopUpImage( divId, imageDivId, imageSrc )
{
    showElement(divId);
    document.getElementById(imageDivId).innerHTML = "<img src='" + imageSrc + "'></img>";
}

function LookUpStock(productid)
{
    showElement(productid);
    CallServer(productid, productid);
    return false;
}
    
function LookUpStockCallback(arg,context)
{
    if (document.getElementById)
    {
        document.getElementById(context).innerHTML = arg;
    }
}

// ProductSheet
function OpenProductSheet(productid, url)
{
  url = url + '?id=' + productid;
  window.open(url,"Productsheet","width=795,height=842,top=0,left=0,toolbar=yes,menubar=yes,resizable=no,scrollbars=yes");
  return false;
}