// POPUP function popup(theURL, winName, W, H){ var x = (window.screen.width - W) / 4; var y = (window.screen.height - H) / 2; //W = window.screen.width; //H = window.screen.height; windowProps = 'width='+W+',height='+H+',status=no,menubar=no,resizable=no,location=no,directories=no,scrollbars=no,toolbar=no,left='+x+',top='+y; theMovieWindow = window.open(theURL, winName, windowProps); theMovieWindow.focus(); theMovieWindow.moveTo(x,y); //return theMovieWindow; } // MAILTO function mailTo(){ str = "mailto:"; str += "info"; str += "@"; str += "farver"; str += ".net"; location.href = str; }