
// Resize and Center Window for Tour

// windowWidth=650;

// windowHeight=268;

// if (parseInt(navigator.appVersion) >= 4) window.moveTo((screen.width/2)-(windowWidth/2+10),(screen.height/2)-(windowHeight/2+20));





// Break Frames

if (window!= top)

top.location.href=location.href





// Kill Right Click

function click(e) {

        if (document.all) {

                if (event.button==2||event.button==3) {

                        oncontextmenu='return false';

                }

        }

        if (document.layers) {

                if (e.which == 3) {

                        oncontextmenu='return false';

                }

        }

}

if (document.layers) {

        document.captureEvents(Event.MOUSEDOWN);

}

document.onmousedown=click;

document.oncontextmenu = new Function("return false;")








