//  popup.js 
//  version 1.0
//  author: Erin Traeger & Joel Dickerson, GE Power Systems

function popupWindow(theURL, theType, theLink)
{
    document.href = '#';
    DisplayWindow = window.open(theURL + '?popupURL=' + theLink + '&popupType=' + theType, 'focusedWindow', 'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=450,height=500');
    DisplayWindow.focus();
}

function printMe()
{
    if (document.all)
    {
        if (navigator.appVersion.indexOf("5.0") == -1)
        {
            alert("In order to print using IE 6, right-click on the window you would like to print and select Print from the menu.");
        } else
        {
            self.focus();
            window.print();
        }
    }
}
