function protectmail(name, address) {
  window.location.href='mailto:'+ name +'@'+ address;
}

var loc
var newwind
function go(loc,newwind){
	if(newwind == "blank"){
		loc="http://"+loc
		window.open(loc,"","width=760,height=500,toolbar,status,resizable,scrollbars,location")
		return;
	}
	if(newwind == "new"){
		loc="http://www."+loc
		window.open(loc,"","width=760,height=500,toolbar,status,resizable,scrollbars,location")
	}
	else{
		self.location="http://www."+loc
	}
}
