<!-- Begin

// Random javascripts for department use

// Function to popup a new window with URL
function popup(url)
{
window.open(url);
}

// Function to popup a new window with URL
function popupBlank(url)
{
windowName = "BlankPopup";
windowProp = "toolbar=1, resizable=1, scrollbars=1, width=550, height=255, left=250, top=1";
window.open( url, windowName, windowProp );
}

// End -->
