﻿// JScript File
// Open New Windows
function opW(url,WinName,future)
{ 
     var w=window.open (url, WinName, future);
     w.focus();
     return false;
}  

//Print Window Page
function printW()
{
    window.print();
}

// ExpandCollapse
function expandcollapse(obj,row,imgsrcPath)
{
    var div = document.getElementById(obj);
    var img = document.getElementById('img' + obj);
    
    if (div.style.display == "none")
    {
        div.style.display = "block";
        if (row == 'alt')
        {
            img.src = imgsrcPath+"/minus.gif";
        }
        else
        {
            img.src = img.src = imgsrcPath+"/minus.gif";
        }
        img.alt = "Close to view other Customers";
    }
    else
    {
        div.style.display = "none";
        if (row == 'alt')
        {
            img.src = imgsrcPath+"/plus.gif";
        }
        else
        {
            img.src = imgsrcPath+"/plus.gif";
        }
        img.alt = "Expand to show Orders";
    }
} 
