

function navGo(url) {
top.location = url;
}

function mailto(domain,user) 
{ 
document.location.href = "mailto:" + user + "@" + domain;
}

function windowOpen(windowname,wp,hp) {
      
var thiswin= open('',windowname,'width='+wp+',height='+hp+',scrollbars=no,directories=no,'+'location=no,menubar=no,scrollbars=YES,status=no,'+'toolbar=no,resizeable=no');
if(navigator.appVersion.substring(0,1)!="2") thiswin.focus();
if(thiswin.opener == null) thiswin.opener = self;
return thiswin;
}

	