// JavaScript Document
function FF_CheckFrame(sProf) {
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
//alert(sPage);
//alert('top: ' + top.location);
//alert('self: ' + self.location);
if(top.location == self.location) 
{ 
if (sProf) { top.location.href = 'index.htm?profissionais.htm?' + sProf; }
else       { top.location.href = 'index.htm?' + sPage; }
return false; 
} 
return true;
}
