// JavaScript Document
/**
	funcions generiques 
 */
function fnHover(e) {
	e.src = e.src.replace('_3d','h3d');
	return true;
}

function fnNoHover(e) {
	e.src = e.src.replace('h3d','_3d');
	return true;
}

function enviarCorreu(nom) {
	document.location.href = 'mailto:' + nom + '@' +'centrecat.com';
	return false;
}

function obrirFoto(pUrl) {
	var w=0;
	var mw=screen.availWidth;
	var mh=screen.availHeight;
	w = window.open('','fotogran');
    if(!w.closed) w.close();

	w = window.open('','fotogran','left=10,top=10,width='+ (mw-30) + ',height='+ (mh-70) + ',scrollbars=yes,resizable=yes');
	w.document.open('text/html');

	w.document.writeln('<title>Foto - nem-tar</title>');
	w.document.writeln('<table width="95%" border=0><tr><td><a href="Javascript:window.close();">Tancar</a></td>');
	w.document.writeln('<td align="center" width="95%"><b><font face="Comic Sans MS" color="#0000FF" size="3">FOTO</font></b></td></tr></table>');
	w.document.writeln('<img src="' + pUrl + '" border=0 width="' + (mw-70) + '" height="' + (mh-150) + '"><BR>');
//	w.document.writeln('<img src="' + pUrl + '" border=0 ><BR>');
	w.document.writeln('<a href="Javascript:window.close();">Tancar</a>');
	w.document.close();	

	return false;
}
