function printiMeil(name,domain,styleclass,text){
	imeil = name + "@" + domain;
	meil2 = "<a href=\"mai" + "lto:" + imeil + "\"";
	if(styleclass) meil2 += " class=" + styleclass;
	if(!text) text = imeil;
	meil2 += ">" + text + "</a>";
	document.write(meil2);
}

function openWindow(file, name, width, height){
	if(!name) name = "popup";
	if(!width) width = 600;
	if(!height) height = 300;
	popUp = open(file,name,'scrollbars=yes,toolbar=no,directories=no,location=no,menubar=no,resizable=yes,header=no,width='+width+',height='+height);
	return false;
}
