/* JavaScript
   ----------------------------
*/

/* Frames laden? */

function checkBeta ()
{
  return document.domain.indexOf ( 'beta' ) != -1;
} 

function checkFrameset ()
{
  if ( top.location.href == self.location.href )
    top.location.href = ( checkBeta() ? '/web' : '' ) + '/frames.php?' + top.location.pathname + top.location.search;
}

function jsInit ()
{
  checkFrameset ();
}

