if (top==self) 
{
adpage = new String(location.href);
pos = new Number(adpage.lastIndexOf('/')+1);
page = new String('index.htm');
host = new String();
	if (pos>0)
	{
		page = adpage.substr(pos);
		if (page.lastIndexOf('.htm')<0) page='index.htm';
		host = adpage.substring(0,pos);
		location.replace(host+"frameme-katapoolside.php?page="+page);
	}
	
}