
function oGMAPS(newURL) {
var yes = 1;
var no = 0;

var menubar = no;      // The File, Edit, View Menus
var scrollbars = no;   // Horizontal and vertical scrollbars
var locationbar = no;  // The location box with the site URL
var directories = no;  // the "What's New", "What Cool" links
var resizable = no;    // Can the window be resized?
var statusbar = yes;    // Status bar (with "Document: Done")
var toolbar = no;      // Back, Forward, Home, Stop toolbar

redirectwindowprops = "width=" + (510) + ",height=" + (400) + ",top=" + (((screen.height-400)/2)-30) +",left=" + (((screen.width-510)/2)-5) + "";

redirectwindowprops += (menubar ? ",menubars" : "") +
(scrollbars ? ",scrollbars" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directories" : "") +
(resizable ? ",resizable" : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");

window.open(newURL, 'fullPopupRedirect', redirectwindowprops);
}


function oMSITE(newURL, owidth, oheight) {
var yes = 1;
var no = 0;

var menubar = no;      // The File, Edit, View Menus
var scrollbars = yes;   // Horizontal and vertical scrollbars
var locationbar = no;  // The location box with the site URL
var directories = no;  // the "What's New", "What Cool" links
var resizable = yes;    // Can the window be resized?
var statusbar = yes;    // Status bar (with "Document: Done")
var toolbar = no;      // Back, Forward, Home, Stop toolbar

redirectwindowprops = "width=" + (owidth) + ",height=" + (oheight) + ",left=" + (((screen.width-owidth)/2)-5) +",top=" + (((screen.height-oheight)/2)-30)  + "";

redirectwindowprops += (menubar ? ",menubars" : "") +
(scrollbars ? ",scrollbars" : "") +
(locationbar ? ",location" : "") +
(directories ? ",directories" : "") +
(resizable ? ",resizable" : "") +
(statusbar ? ",status" : "") +
(toolbar ? ",toolbar" : "");

window.open(newURL, 'MSITEr', redirectwindowprops);
}
