//=====================================

// Evita frames
if (top.location!= location) { 
top.location.href = document.location.href ; 
} 
//=====================================


//=====================================

// Evita el texto en mayúsculas.
// Requiere que coincida el id de los campos verificados del formulario con los del script
// Requiere   onsubmit="return countCaps()"  en la etiqueta <FORM>


function countCaps()
{
    val = 1;
    var regexp = /[A-Z]/g;
    var myMsg ='El texto contiene demasiadas mayusculas.\nPor favor use minusculas en sus textos.\n\n Gracias.';


	//Para clasificados de Lukor y Granadaenlared
	var matchList1 = "0";
	var text1 = document.getElementById("adtitle").value;
	while ((match = regexp.exec(text1)) != null) {
		matchList1 += val;
	}
	var matchList2 = "0";
	var text2 = document.getElementById("addesc").value;
	while ((match = regexp.exec(text2)) != null) {
		matchList2 += val;
	}
	var percentage1 = matchList1.length/text1.length * 100 ;
	var percentage2 = matchList2.length/text2.length * 100 ;

	if ( percentage1 >= 30 || percentage2 >= 10 ) {
		alert( myMsg );
		return false;
	}
	return true;
} 


//====================================


