function showEmail(user, domain, tld, title){

	var emailId = user + "\u0040" + domain + "." + tld;
	var url = "mailto:" + emailId;

	if(!title){
		title = emailId;
	}

	document.write("<a href='" + url + "'>" + title + "</a>");
}


function printPage(id) {

	var content = $(id).innerHTML;
	var page = window.open('','print','width=680,height=400,scrollbars=1');

	page.document.open();
	page.document.write('<html><head><link rel="stylesheet" href="/demo/include/style.css" type="text/css" /></head><body onload="window.print()"><div id="printContent"><div id="rightColumn">'+content+'</div></div></body></html>');
	page.document.close();

	setTimeout(function(){page.close();},1000);
}
