function home_domain() { url = document.referrer; // alert('href = ' + top.frames[0].document.title); if (url.indexOf("http://") != 0) return "sarmas.com"; // url starts with http:// file = url.substring(7); domain = file.substring(0, file.indexOf("/")); if (!(domain == "www.sarmas.com" || domain == "www.sarmas.org" || domain == "www.sarmas.biz")) return "sarmas.com"; if (domain.indexOf("www.") == 0) { domain = domain.substring(4); } return domain; } function home_url() { domain = home_domain(); return "http://www." + domain; } function home_mailto() { domain = home_domain(); return "mailto:eis@"+domain; } document.write( '

' +'Welcome to ' + home_domain() + '' +'

' +'
' +'' +'' +'' +'' +'' +'' +'' +'' +'' +'' +'' +'' +'
' +'
Services
' +'
' +'
Home
' +'
' +'
Mail
' +'
' +'
Links
' +'
' +'
Services
' +'
' +'
Home
' +'
' +'
Mail
' +'
' +'
Links
' +'
');