//** unique javascript remains the property of Smashing Time Web Design (see smashingtime.com.au)


if (self==parent)
{
 document.write('<font face="Verdana" size="2" color="#000000">SENDING TO START PAGE.....</font><br><br>')
 document.write('<META HTTP-EQUIV="refresh" CONTENT="1; URL=index.htm">')
}

// to work this javascript MUST be after any stylesheet settings in the HEAD 

//** stylesheet overiders for dodgy browsers
browser = navigator.appName;
ie = "Microsoft Internet Explorer";
ns = "Netscape";

if (navigator.appVersion.indexOf("Macintosh") != -1)
    isMac = true;
else
    isMac = false;

appVer = parseInt(navigator.appVersion);
if (browser == ns)
 {
 if (appVer <= 4)
  {document.write("<style type='text/css'> body {background-image: none;}</style>")}
 }

//** NS4 resizing bug workaround - reloads the window if Nav4 resized
function MM_reloadPage(init) {  
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);