// Basic framework javascript function openWindow(image) {  // create a variable to hold all the options you can change  var windowOptions = "location=no,menubar=no,status=no,titlebar=no,toolbar=no,scrollbars=no,width=850,height=650,resizeable=yes";   // create a new instance of the window with the name newWindow so we can write to it  var newWindow = open(' ','WindowDemonstration',windowOptions);  newWindow.document.write("<html>");  newWindow.document.write("<head><title>Result\u00E9 Universal</title><link href='/recruiter/website.nsf/main.css' rel='stylesheet' type='text/css'></head>");  newWindow.document.write("<body bgcolor=#ffffff>");  newWindow.document.write("<table border='0' cellpadding='0' cellspacing='0' align='center' style='background-position: center;'>");  newWindow.document.write("<tr><td>");  newWindow.document.write("&nbsp;");  newWindow.document.write("</td></tr>");    newWindow.document.write("<tr><td valign='middle'>");  newWindow.document.write("<img src='"+image+"' border='0'>");  newWindow.document.write("</td></tr>");  newWindow.document.write("<tr><td>");  newWindow.document.write("&nbsp;");  newWindow.document.write("</td></tr>");  newWindow.document.write("<tr><td align='center'class='closeWin'>");  newWindow.document.write("<a href='javascript: window.close()'>Close Window</a>");  newWindow.document.write("</td></tr>");  newWindow.document.write("</table>");  newWindow.document.write("</body>");  newWindow.document.write("</html>");  newWindow.document.close();  newWindow.focus(); }// open a popup windowfunction ShowPopup(url, name, width, height ) {	popURL = (typeof(url) == "string" && url.length) ? url : "''";	MyWindowName = (name.length) ? name : "MyPopupWindow";	MyWidth = (width > 0) ? width : 300;	MyHeight = (height > 0) ? height : 300;    if (document.all)         xMax = screen.width, yMax = screen.height;    else        if (document.layers)             xMax = window.outerWidth, yMax = window.outerHeight;        else             xMax = 640, yMax=480;     xOffset = (xMax - MyWidth)/2, yOffset = (yMax - MyHeight)/2;a = window.open(popURL,MyWindowName,'scrollbars=1',width=+MyWidth+',height='+MyHeight+',screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');}
