// 1 POP-UP
function finestra(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// 2 MAIL ANTI SPAM
function mailAntiSpam(tipus){
var usuario = "publicine";
var dominio = "iglumedia.com";
switch (tipus){
	case "homecat":
	document.write('<a href=\'mailto:' + usuario + '@' + dominio + '\'><img src=img/mail.gif alt="BÚSTIA DE CORREU" width=72 height=23 border=0></a>');

break;
	case "homeesp":
	document.write('<a href=\'mailto:' + usuario + "@" + dominio + '\'><img src=img/mail.gif alt="BUZÓN DE CORREO" width=72 height=23 border=0></a>');

break;
	case "inside":
	document.write('<a href=\'mailto:' + usuario + "@" + dominio + '?body=ESPECIFICA LA SALA DE CINE POR FAVOR\'><img src=img/mail.gif width=72 height=23 border=0></a>');
	
break;
	case "inside2":
	document.write('<a href=\'mailto:' + usuario + "@" + dominio + '?body=ESPECIFICA LA SALA DE CINE POR FAVOR\'><img src=../img/mail.gif width=72 height=23 border=0></a>');

break;
	case "sugcat":
	document.write('<a href=\'mailto:' + usuario + '@' + dominio + '\'>Suggeriments</a>');
	
break;
	case "sugesp":
	document.write('<a href=\'mailto:' + usuario + '@' + dominio + '\'>Sugerencias</a>');
	}
}

