document.writeln("<FORM name='myForm'><INPUT TYPE='HIDDEN' NAME='navFrame'>");
document.writeln("<INPUT TYPE='HIDDEN' NAME='mainFrame'></FORM>");

if (!document.whichFrame)
{
  document.whichFrame = "overtonezmain" ;
}

if (document.mainFrameText) 
{
  document.forms.myForm.mainFrame.value=document.mainFrameText ;
}
else
{
  document.forms.myForm.mainFrame.value=this.location.href ;
}

document.forms.myForm.navFrame.value="" ;
document.forms.myForm.method="POST" ;
document.forms.myForm.target="_top" ;

function escapeFrames()
{
  if (this.location.host == "overtonez.co.uk" || this.location.host == "overtonez") 
  { 
    document.myForm.action="http://"+this.location.host+"/frame_me/index.pl" ;
    document.myForm.submit();
  }
  else if (this.location.host == "www.skater.uklinux.net" || this.location.host == "vert")
  {
    document.myForm.action="http://"+this.location.host+"/autoSMS/frame_me/index.pl" ;
    document.myForm.submit();
  }
  else
  {
    document.myForm.action="http://overtonez.co.uk/frame_me/index.pl" ;
    document.myForm.submit();
  }
}

if (this.name != document.whichFrame) { escapeFrames(); }
//if (parent.name != "") { escapeFrames(); }
