function getLink(o)
{
	return (o instanceof  String || typeof o == "string") ? o : o.getAttribute('href');
}

function openWindow(o)
{
	var win = window.open(getLink(o));
	win.focus();
	return false;
}

function writeMail( m )
{
	var parts = ['@', 'cmonagence', 'com'];
	document.write('<a href=\'mailto:'+m+parts[0]+parts[1]+'.'+parts[2]+'\'>'+m+parts[0]+parts[1]+'.'+parts[2]+'</a>');	
}
