function mhref(name,domn,subj) {
	if (arguments.length<3) subj="";
	else if (!encodeURIComponent) subj="";
	else if (subj!="") {
		subj="?subject="+encodeURIComponent(subj);
	}
	window.location.href="mailto:"+name+"@"+domn+subj;
}
function wsize(href,w,h) {
newwin=window.open(href,"_blank","height="+h+",width="+w+",menubar='no',toolbar='no'")
}
