
//window.open('register.htm','register','scrollbars=0,height=100,width=468');
//pre-cache the mouse-overs unlike the rest of the idiots out there
if (document.images){
venues_f2 = new Image(101,48)
venues_f2.src = "images/venues_f2.gif"
contact_f2 = new Image(101,48)
contact_f2.src = "images/contact_f2.gif"
windowpane_f2 = new Image(101,48)
windowpane_f2.src = "images/windowpane_f2.gif"
live_f2 = new Image(101,48)
live_f2.src = "images/live_f2.gif"
play_f2 = new Image(101,48)
play_f2.src = "images/play_f2.gif"
}

//the mouseover functions
var KeepVar; 

function ChangePicture(Name)
               {if (document.images){
		KeepVar = Name;
                SwitchImg = "images/" + Name + "_f2.gif"; 
                document.images[Name].src=SwitchImg;
}
} 


function Fix()
     			{if (document.images){
	  			SwitchImg = "images/" + KeepVar + ".gif";
          		document.images[KeepVar].src=SwitchImg;

}
}

///////////////////////////////////////////////////////////////////////
//                           Thomas Williams                         //
//                    JavaScript Pop-Up Win Function                 //
//                        thomas@jet-screamer.com                    //
		                                                             //
function openthewindow(strfilename,strwindowname,stroptions){        //
   	                                                                 //
	    window.open (strfilename,strwindowname,stroptions)           //
}                                                                    //
//                                                                   //
//     Use the following format for your html link including the     //
//    (name of the file,a window name,and whatever window options)   //
//                                                                   //
//               <a href ="javascript:openthewindow                  //
//          ('foo.txt','aname','scrollbars,width=300,height=250,     //
//                     resizable=no')">link</a>                      //
//                                                                   //
//             --------------------DONE!--------------------         //
///////////////////////////////////////////////////////////////////////

