function makeMailTo(user, domain, subject, bodytext, link_txt){
	if (user!=""){
		document.write('<a class=\"header\" href=\"mailto:' + user + '@' + domain + '?subject=' + subject + '&body=' + bodytext + '\">'); 
		document.write(link_txt + '</a>');
	}else{
		document.write('<a class=\"header\">'); 
		document.write(link_txt + '</a>');
	}
}




function openImgPopUp(src, ww, hh){
	var width = ww;
	var height = hh;
	var l = ( screen.width - width )/2;
	var t = ( screen.height - height )/2 - 20;
	l=l-200;
	t=t-400;
	url = src;
	window.open( url, "_blank", "directories=0,location=0,menubar=0,titlebar=0,toolbar=0,scrollbars=0,resizable=1,left="+l+",top="+t+",width="+width+",height="+height );
}


function openPopUp(src, ww, hh){
	var width = ww;
	var height = hh;
	var l = ( screen.width - width )/2;
	var t = ( screen.height - height )/2 - 20;
	l=l-200;
	t=t-400;
	url = src;
	window.open( url, "_blank", "directories=0,location=0,menubar=0,titlebar=0,toolbar=0,scrollbars=1,resizable=1,left="+l+",top="+t+",width="+width+",height="+height );
}
