function frameload()
{
	framesetpage="../frameloader.html";
	if(parent.location.href==window.location.href) 
	{
		thispage = window.location.href;
		if (thispage.indexOf('://') < 0) {thispage="://"+thispage;};
		prefix=thispage.substring(0, thispage.lastIndexOf('://'));
		suffix=thispage.substring(thispage.lastIndexOf('://')+3, thispage.length);
		parent.location.href=framesetpage+"?"+prefix+"&&&"+suffix
	}
	else
	{
		parent.FrameFooter.location.reload();
		//parent.banner.location.reload();
		parent.FrameNavigate.location.href="navigate.html";
	}
}

