var topURL = top.location.href;

var temp;
var temp2;
if (topURL != 'http://www.regerlimousine.com/')
{
 var k=7;
 var foundit = 0;

 while ( (k<topURL.length) && (foundit != 1) )
 {

  if (topURL.substring(k,k+1) == '/')
  {
   var page = topURL.substring(k);
   foundit = 1;
  }
  k=k+1;
 }

 if (page.substring(0,9) != '/jump.cgi')
 {
  if (page == '/') {
   page = '/main.html';
  }
  redir = 'http://www.regerlimousine.com/jump.cgi?url='+page;
  window.location=redir;
 }
}
