//THIS CODE MUST GO INTO THE head TAG OF EACH HTML/PHP CONTENT PAGE (INDEX PAGES, ETC. NOT INCLUDED)
if(parent.location.href == self.location.href){
	//CALL THE MAIN FRAMESET PAGE AND PASS THIS PAGE'S URL AS THE url VALUE ON THE QUERY STRING
	//window.location.href = '/index3.html?url=' + parent.location.href;
	//window.location.href = '/index3.php?url=' + parent.location.href;
	//window.location.href = '/index3.php?url=' + escape(parent.location.href);
        //window.location.replace('/index3.php?url=' + escape(parent.location.href));
	window.location.replace('/index3.html?url=' + escape(parent.location.href));
}

