    // global javascript ...       var condenetads_ord = Math.random()*10000000000000000;         // magnetClass   function magnetClass() {       window.opener != null ? this.popReferrer = window.opener.location : this.popReferrer = null;    window.opener != null ? this.popReferrerTitle = window.opener.document.title : this.popReferrerTitle = null;  } // end     // instance of magnet class ...   magnet=new magnetClass();       // makeThisYourHomePage   function makeThisYourHomePage(page) {     var homePageHref="http://"+location.host+"/main/start/";     if( document.all && navigator.userAgent.indexOf("Mac")<0 ) {       page.style.behavior='url(#default#homepage)';       page.setHomePage(homePageHref);     }     else {       alert(" Select PREFERENCES from the EDIT menu \n " +     	"and under HOME PAGE select USE CURRENT PAGE.");     }   } // end   magnetClass.prototype.makeThisYourHomePage=makeThisYourHomePage;     // clear input ...   function clearInput() { return arguments[0].value="";  } // end   magnetClass.prototype.clearInput=clearInput;   // load pages ...   function loadPage() {     window.location=arguments[0];   } // end   magnetClass.prototype.loadPage=loadPage;     // pop window ...   function popPage(href,name,options) {     if(href) {       if(options==null) {         options="location=yes,menubar=yes,resizable=yes,status=yes,scrollbars=yes,toolbar=yes";       }       if(name==null) { name="popper"; }       var poppedWindow=window.open(href,name,options);       poppedWindow.focus(); // in case it's already opened     }   } // end   magnetClass.prototype.popPage=popPage;   // legecy ...   function popWindow(href,name,options) {     popPage(href,name,options);   } // end   magnetClass.prototype.popWindow=popPage;     // pop window ...   function updateOpener(href,close) {     if(window.opener) {       window.opener.location=href;       window.opener.focus();     }     else {       var popper=window.open(href,"new","scrollbars=yes,status=yes,resizable=yes");       popper.focus();     }     if(close) { window.self.close(); }   } // end   magnetClass.prototype.updateOpener=updateOpener;     // load pages from option fields ...   function loadSelected(hf) {     if(hf.options[hf.selectedIndex].value) {       location=hf.options[hf.selectedIndex].value;     }   } // end   magnetClass.prototype.loadSelected=loadSelected;     // pop window from option fields ...   function openSelected(href,name,options) {     href=href.options[href.selectedIndex].value;     if(href) {       if(options==null) {         options="location=yes,menubar=yes,resizable=yes,status=yes,scrollbars=yes,toolbar=yes";       }       if(name==null) {         name="popWindow2";       }       var poppedWindow=window.open(href,name,options);       href.selectedIndex=null;       poppedWindow.focus(); }   } // end   magnetClass.prototype.openSelected=openSelected;                               