
<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;




// MOUSEOVER EFFECTS



if (document.images) {


contacton = new Image(80, 75);
contacton.src = "picts/contact-on.gif"

contactoff = new Image(80, 75);
contactoff.src = "picts/contact-off.gif"

nexton = new Image(120, 55);
nexton.src = "picts/nexton.gif"

nextoff = new Image(120, 55);
nextoff.src = "picts/nextoff.gif"

}

function img_act(imgName) {
if (document.images) {
imgOn = eval(imgName + "on.src");
document [imgName].src = imgOn;
}
}

function img_inact(imgName) {
if (document.images) {
imgOff = eval(imgName + "off.src");
document [imgName].src = imgOff;
}
}

//  Rollover effect on different image script-By JavaScript Kit (http://javascriptkit.com)Over 200+ free scripts here!

function changeimage(towhat,url){
if (document.images){
document.images.targetimage.src=towhat.src
gotolink=url
}
}
function warp(){
window.location=gotolink
}

function playsound() 
{
if (document.all)
 {
  document.all.sound.src = "sound/engine.wav";
 }
}
document.write('<EMBED SRC="sound/engine.wav" autostart="false" hidden="true"></embed>')
document.write('<bgsound id="sons">')

function playhome() 
{
if (document.all)
 {
  document.all.sound.src = "sound/beep.wav";
 }
}
document.write('<EMBED SRC="sound/beep.wav" autostart="false" hidden="true"></embed>')
document.write('<object type="audio/x-wav" data="sound/beep.wav" width="0" height="0" id="objet_id">')
document.write('<param name="src" value="sound/beep.wav">')
document.write('<param name="autoplay" value="false">')
document.write('<param name="autoStart" value="0">')
document.write('</object>')
// -->
