// javascript for tasvic.org.au

// TRAP ERRORS

function stopError() { // SA 17/07/2001 v01
    // this is for just in case, as there shouldn't be any errors
    // document.bgColor = "#ff0000";
    // return true to suppress the error in the browser
    return true;
    // return false to release the error to the browser
    // return false;
}

window.onerror = stopError;

// BUST FRAMES

if (self.parent.frames.length != 0) {
    self.parent.location=document.location;
}

