function favoritos ( texto ) {
	
	window.external.AddFavorite('http://www.energiatrina.com', texto);
}



function enviaCorreo () {
	
  var as1 = "mailto:";
	var as2 = "infoet";
  var as3 = "@";
	var as4 = "energiatrina";
	var as5 = ".";
	var as6 = "com";
	var envia = as1+as2+as3+as4+as5+as6;

	location.href = envia;
}


function insertaCarro () {
	
	text  = document.getElementById('opinion');
	text.value = text.value + '\<br\\\>';
}

function insertaEspacio () {
	
	text  = document.getElementById('opinion');
	text.value = text.value + '\&nbsp\;';
}

function muestraProvincia () {
	
	provincia = document.getElementById('provinciasEspanna');
	
	if (pais.value != 'es') {
		provincia.style.display='none';
	
	} else {
		provincia.style.display='block';
	}
}