// frame buster - code by Gordon McComb

setTimeout ("changePage()", 3000);

function changePage() {
	if (self.parent.frames.length != 0)
		self.parent.location=document.location;
}


// Rollover

function PreloadImages(length, path, type) {
    for(var i = 1; i<=length; i++) {
        this[i]= new Image()
        this[i].src= path + i + type
    }
    return this
}

over=new PreloadImages(4,'../../bits/butts/over','.gif')
butt=new PreloadImages(4,'../../bits/butts/butt','.gif')

function rollOn(num){
if(document.images)
    eval('document.images["butt'+num+'"].src='+'over[num].src')
}
function rolloff(num){
if(document.images)
    eval('document.images["butt'+num+'"].src='
            +'butt[num].src')
}


// New window

function open_window(url) {
mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=580,height=550');
}
