var ns = (document.layers)? true:false var ie = (document.all)? true:false var dom = (document.getElementById)? true:false //Global Variable var strDomain = 'http://www.groupbenefits.ca'; var moDir = strDomain + '/images/'; //images directory //Simple MouseOver function function mo(obj,img){ document.images[obj].src = moDir + img + '.gif'; } //Displays browser status text function s(txt) { if(txt != '') status = txt; else status = 'GrouBenefits.ca'; } //Window pop up function popUpWin(url,wd,ht) { var topX, leftY; topX = (window.screen.height-ht)/2; leftY = (window.screen.width-wd)/2; win = window.open(url,'temp','height='+ht+',width='+wd+',toolbar=0,directories=0,menubar=0,status=0,resizable=0,location=0,scrollbars=0,copyhistory=0,screenX='+topX+',screenY='+leftY+',top='+topX+',left='+leftY); }