//basic popup window// var owindow; function popup_win(url,w,h,scroll) { h+=10; w+=10; var size = ",width="+w+", height="+h; owindow = window.open (url,"Label","toolbar=no,location=no,directories=no,status=no,scrollbars="+scroll+",resizable=yes,copyhistory=no" + size); owindow.focus(); } //email link// function noSpam(user,domain) { locationstring = "mailto:" + user + "@" + domain + " "; window.location = locationstring; } //1px background fix// window.onload = resizeIfOdd; window.onresize = forceBrowserEven; function resizeIfOdd(){ if(navigator.userAgent.indexOf('Firefox/3') != -1 || navigator.userAgent.indexOf('WebKit') != -1) if(document.documentElement.clientWidth % 2 == 1) window.resizeBy(-1,0); }; function forceBrowserEven(){ window.setTimeout('resizeIfOdd()',5); };