<!--
	// ===============================================================================================
	// Tapidet                                                     Copyright 2004 Integra Digital S.L.
	// http://www.integradigital.com                                           info@integradigital.com
	// ===============================================================================================
	
	var bIsIE = (document.all)? true : false;
	
	function fSendInfo(){
		if (document.getElementById('nom').value == '' || document.getElementById('com').value == ''){
			alert('Debe introducir al menos su nombre y algún comentario.');
		} else {
			document.getElementById('dataform').submit();
		}
	}
//-->