<!-- // Begin
function bcnwf_telefon_movil(dowrite)
{
	wtelefon = '667-770-839';
	
	if (dowrite == "no")
        return (wtelefon);
	else
	    document.writeln(wtelefon);
}

function bcnwf_fax(dowrite)
{
	var wfax = '934-639-164';

	if (dowrite == "no")
	   return (wfax);
	else
	   document.writeln(wfax);
}

function bcnwf_email(dowrite)
{
	var user = "comercial";
	var at   = "@";
	var domain = "bcnwf.es";
	var command = "mailto";
	
	if (dowrite == "no")
	   return ('<a href="'+ command + ":" + user + at + domain + '">' + user + at + domain + '</a>');
	else
	   document.writeln('<a href="'+ command + ":" + user + at + domain + '">' + user + at + domain + '</a>');
}

function taula_dades_contacte(arrel)
{
	document.writeln('<table cellpadding="0" cellspacing="0" class="float_right">');
    document.writeln('<tbody>');
    document.writeln('<tr>');
    document.writeln('<td class="icono"><img src="'+ arrel + 'estils/imatges/BCNWF-Fax.gif" alt="Fax +' + bcnwf_fax("no") + '" title="Fax" /></td>');
    document.writeln('<td class="direccion">');
	document.writeln(bcnwf_fax("no"));
    document.writeln('</td>');
    document.writeln('<td class="icono"><a href="tel:' + bcnwf_telefon_movil("no") + '"><img src="'+ arrel + 'estils/imatges/BCNWF-Telefono-movil.gif" alt="Tel&eacute;fono ' + bcnwf_telefon_movil("no") + '" title="Tel&eacute;fono m&oacute;vil" /></a>');
    document.writeln('</td>');
    document.writeln('<td class="direccion">');
    document.writeln('<a href="tel:' + bcnwf_telefon_movil("no") + '">' + bcnwf_telefon_movil("no") + '</a>');
    document.writeln('</td>');
    document.writeln('</tr>');
    document.writeln('<tr>');
	document.writeln('<td class="icono"><a accesskey="I" href="' + arrel + 'index.html"><img src="'+ arrel + 'estils/imatges/BCNWF-Home.gif" alt="Inicio" title="Inicio" /></a></td>');
    document.writeln('<td class="direccion bold"><a accesskey="I" href="' + arrel + 'index.html">INICIO</a></td>');
    document.writeln('<td class="icono"><a accesskey="C" href="' + arrel + 'contact.html"><img src="'+ arrel + 'estils/imatges/BCNWF-Mail.gif" alt="Contacto" title="Contacto" /></a></td>');
    document.writeln('<td class="direccion bold"><a accesskey="C" href="' + arrel + 'contact.html">Contacte con nosotros</a></td>');
    document.writeln('</tr>');
    document.writeln('</tbody>');
    document.writeln('</table>');
}
//  End -->
