// JavaScript Document

function enviacorreu(nom,domini)
{ 
	window.location = 'mailto:' + nom + '@' + domini; 
}

// fons fotos //

function high(which2)
{
theobject=which2;
highlighting=setInterval("highlightit(theobject)",50);
}
function low(which2)
{
clearInterval(highlighting);
which2.filters.alpha.opacity=50;
}
function highlightit(cur2)
{
if(cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if(window.highlighting)
clearInterval(highlighting)
}

// AMPLIAR FOTOS

function foto(w,h,foto,img)
{
	w = parseInt(w)+20 ;
	var h = parseInt(h) +20;
	
	win = window.open("","ampliacio_foto","width="+w+",height="+h+",scrollbars=no");
	if (win.opener == null) {	
		win.opener = self; 
	}
	w = w - 20;
	h = h - 20;
	win.document.write("<html>");
	win.document.write("<head><title>Agrupaci&oacute; de Balls Populars de Torredembarra</title></head>");	
	win.document.write("<body bgcolor=\"#ffffff\" leftmargin=\"10\" rightmargin=\"10\" topmargin=\"10\" bottommargin=\"10\" marginwidth=\"10\" marginheight=\"10\">");
	win.document.write("<table border=\"0\"  width=\""+w+"\""+"vspace=\"0\" hspace=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">");
	win.document.write("<tr>");
	win.document.write("<td>");
	win.document.write("<img src=\""+ img +"\" width=\""+w+"\" height=\""+h+"\" border=\"1\">");
	win.document.write("</td>");
	win.document.write("</tr>");
	win.document.write("</table>");
	win.document.write("</body>");
	win.document.write("</html>");
}