function mailTo(user, domain, tld) {
	window.location = "mail"+"to"+":"+user+"%40"+domain+"%2e"+tld;
}

function openWindow(path,title,width,height,scrollbars) {
	newWindow = window.open(""+path,""+title,"toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars="+scrollbars+", resizable=no, copyhistory=no, width="+width+", height="+height+"") ;
	newWindow.focus() ;
	return false;
}

function targetBlank(aUrl) {
	var newWindow = null;
	newWindow = window.open(aUrl);
	newWindow.focus() ;
	return false;
}

function showHide(id) {
	var obj ;
	
	obj = document.getElementById(id) ;
		
	if (obj.style.visibility == 'hidden'){
		obj.style.visibility = 'visible';
		obj.style.display = 'block';
	}
	else {
		obj.style.visibility = 'hidden';
		obj.style.display = 'none';
	}
	
	return false;
}
