function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
var newwin;

var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function openNewWindow(URLtoOpen, windowName, windowFeatures) {
            winfeatures = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=760,height=500";
            newwin = window.open(URLtoOpen,windowName,winfeatures);
            if(javascript_version > 1.0)
            {
                        setTimeout('newwin.focus();',250);
            } 
} 
function openBigWindow(URLtoOpen, windowName, windowFeatures) {
            winfeatures = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=500";
            newwin = window.open(URLtoOpen,windowName,winfeatures);
            if(javascript_version > 1.0)
            {
                        setTimeout('newwin.focus();',250);
            } 
} 
function openNewSmallWindow(URLtoOpen, windowName, windowFeatures) {
            winfeatures = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=400";
            newwin = window.open(URLtoOpen,windowName,winfeatures);
            if(javascript_version > 1.0)
            {
                        setTimeout('newwin.focus();',250);
            } 
} 
function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}