//****************************************
// Global Vars
// Holds globaly used strings that are used witihn the cae system
// are put into client side js and displayed with document.write() method
// less server overhead/chance off error than serverside includes and .ascx controls if only needed for display
//****************************************


//top link bar
var glLinkBar = new String("<table height='10' bgcolor='#660099' width='100%' cellpadding='0' cellspacing='0'>");
glLinkBar+="<tr><td height='1' width='1%'><A href='http://websearch.its.unimelb.edu.au/'><img src='/cae/images/mu_search.gif' border='0'></a></td>";
glLinkBar+="<td height='1' width='1%'><A href='http://www.unimelb.edu.au/az/azdirectory/'><img src='/cae/images/mu_directory.gif' border='0'></a></td>";
glLinkBar+="<td height='1' width='1%'><A href='http://www.unimelb.edu.au/contact/contact.html'><img src='/cae/images/mu_contact.gif' border='0'></a></td>";
glLinkBar+="<td height='1' width='1%'><A href='http://www.unimelb.edu.au/about/'><img src='/cae/images/mu_about.gif' border='0'></a></td>";
glLinkBar+="<td height='1' width='94%' align='right'><a href='http://www.services.unimelb.edu.au/careers/'><img src='/cae/images/title_sm.gif' border='0'></a></td>";
glLinkBar+="</tr></table>";

//instructional text used in forms, to define mandatory fields
var glMandatoryText = new String("Asterisks (<font color='red'>*<\/font>) denote mandatory fields."); //'Greyed out' fields are inactive for this profile.

function popupsized(url,width,height)
{
    window.open(url, '','resizable=yes, width='+width+', height='+height+', scrollbars=yes');
}


