//FUNCIÓN PARA CHECKEAR SI ESTÁ EL FRAME PRINCIPAL
//
function checkIndex(){
	//var pagina = location.pathname;

//	var pagina =window.location.href
	/*if (pagina.search('index.asp') == -1)
	{
		
		top.location.href="index.asp?p="+pagina;
		
	}*/
	var pagina =top.location.href;
	if(top.location.href == window.location.href){
	//	alert(top.location.href);
		top.location.href="index.asp?p="+pagina;
	}
	
}
//
checkIndex();
//alert (top.location.href != window.location.href);