<!--


function mostrar_capa(nombreCapa) {
      document.getElementById(''+nombreCapa+'').style.display="block";

}

function ocultar_capa(nombreCapa) {
      document.getElementById(''+nombreCapa+'').style.display="none";

}

function comprobar_contacto()
{
	var error=true;
	if(document.getElementById('e_mail'))
		{
		if(!document.getElementById('e_mail').value)
			{
			document.getElementById('e_mail').style.backgroundColor='#FFFFCC';
			error=false;
			}
		else
			{
			document.getElementById('e_mail').style.backgroundColor='';
			}
		}
	if(document.getElementById('persona_contacto'))
		{
		if(!document.getElementById('persona_contacto').value)
			{
			document.getElementById('persona_contacto').style.backgroundColor='#FFFFCC';
			error=false;
			}
		else
			{
			document.getElementById('persona_contacto').style.backgroundColor='';
			}
		}
	if(document.getElementById('telefono'))
		{
		if(!document.getElementById('telefono').value)
			{
			document.getElementById('telefono').style.backgroundColor='#FFFFCC';
			error=false;
			}
		else
			{
			document.getElementById('telefono').style.backgroundColor='';
			}
		}
	if(document.getElementById('comentarios'))
		{
		if(!document.getElementById('comentarios').value)
			{
			document.getElementById('comentarios').style.backgroundColor='#FFFFCC';
			error=false;
			}
		else
			{
			document.getElementById('comentarios').style.backgroundColor='';
			}
		}
	return error;
}
	
-->


