/* Código baseado no projeto Mangrat de Leonardo Pereira: http://www.leonardopereira.com/mangrat/ */
/******************************* Início do código ************************************/
/*function CHANGE(){
	if(parent.location.href.split("#")[1] != undefined && parent.document.getElementById("MAIN_FRAME") != null) {
		parent.document.getElementById("MAIN_FRAME").src="";
		link="./main.php?"+parent.location.href.split("#")[1];
		//alert(link+" <- E o item -> "+parent.document.getElementById("MAIN_FRAME"));
		//alert(parent.document.getElementById("MAIN_FRAME").src);
		parent.document.getElementById("MAIN_FRAME").src=link;
	} else {
		link="./main.php";
		parent.document.getElementById("MAIN_FRAME").src=link;
	}
}
window.onload = function() { CHANGE(); }
function Atualiza(obj){
	parent.location.href = obj.href;
	
	CHANGE();
}*/
/**************************************** Fim ****************************************/
window.onload = function() { //CHANGE(); 
}
function Atualiza(a){;
	obj=a.href;
	CHANGE(a.href);
}
function CHANGE(obj){
	if(obj != undefined){
		if(obj.split("#")[1] != undefined){
			link = "http://www.amizade.fm.br/amizade/main.php?"+obj.split("#")[1];
			alert(document.getElementById("MAIN_FRAME").src+" => "+link);
			try{
				parent.document.getElementById("MAIN_FRAME").src = link;
			} catch(e) {
				alert("ERRO!")
			}
		}
			
		return 9001;
	} else {
		alert("PORRA!");
		parent.document.getElementById("MAIN_FRAME").src = 0;
	}
}
