/* Common javascript function are to be placed in this file */
function popup(url, width, height) 
{
    window.open(url,'','scrollbars=no,menubar=no,height=' + height + ',width=' + width + ',resizable=yes,toolbar=no,location=no,status=no');
}

function CollapseFlashArea()
{
    document.getElementsByTagName("body")[0].className += " Collapsed Opener";       
    document.getElementById("BreadcrumbIconsDiv").style.marginRight = "160px";
    document.getElementById("BreadcrumbIconsDiv").style.display = "inline";
}
function ExpandFlashArea()
{
    var classen = document.getElementsByTagName("body")[0].className;
    var uses = classen.split(" ");     
    
    document.getElementsByTagName("body")[0].className = uses[0];
    document.getElementById("BreadcrumbIconsDiv").style.marginRight = "160px";
    document.getElementById("BreadcrumbIconsDiv").style.display = "inline";
}
