function printmail(zone,domain,account,text)
{	var myat = String.fromCharCode(64);
	document.write('<a href="mailto:');
	document.write(account + myat + domain + '.' + zone);
	if (text==null || text.length==0) {
		document.write('\">'); document.write(account + myat + domain + '.' + zone);
	} else
		document.write('\" title=\"'+text+'\">'+text);
	document.write('<\/a>');
}

function hidebanner()
{
 var width=0; 
 if (self.screen) {width = screen.width;} 
 if (width < 1024) {document.all['right'].style.display="none"}
}