<!-- Hide from old browsers
function openFullscreen1(page) {var yes = 1;var no = 0;var menubar = no;      // The File, Edit, View Menusvar scrollbars = no;   // Horizontal and vertical scrollbarsvar locationbar = no;  // The location box with the site URLvar directories = no;  // the "What's New", "What Cool" linksvar resizable = no;    // Can the window be resized?var statusbar = yes;    // Status bar (with "Document: Done")var toolbar = no;      // Back, Forward, Home, Stop toolbarvar titlebar = yes;      // titlebarif (navigator.appName.indexOf('Netscape') != -1)
{
if (navigator.appVersion.substr(0, 1) <=4)
{
windowprops = "width=" + (screen.width-10) + ",height=" + (screen.height-30) + ",top=0,left=0"; //OLD NETSCAPES
}
else {

windowprops = "width=" + (screen.width-5) + ",height=" + (screen.height-70) + ",top=0,left=0"; // NEW NETSCAPE


}
}
else
{
windowprops = "width=" + (screen.width-10) + ",height=" + (screen.height-75) + ",top=0,left=0"; //MIE}windowprops += (menubar ? ",menubars" : "") +(scrollbars ? ",scrollbars" : "") +(locationbar ? ",location" : "") +(directories ? ",directories" : "") +(resizable ? ",resizable" : "") +(statusbar ? ",status" : "") +(toolbar ? ",toolbar" : ""); +(titlebar ? ",titlebar" : "");
window.open(page, 'fullPopup1', windowprops);}//  End -->
