function ShowEventDetails(Event_ID){
	//CREATED BY NEIL RAMRATTAN
	//LAST UPDATE: 02/26/2001
	//this function creates a pop-up box to display the text for the Event Details
	var eventpage, temp;

	eventpage = "/Events/EventDetails.asp?Event_ID="+Event_ID
	temp = window.open(eventpage, 'EventDetails', 'resizable=yes,scrollbars=yes,dependent=yes,width=700,height=650,left=200,top=100');
	temp.document.bgColor="white";
	temp.focus();
}
function popUp1(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=0,width=1000,height=900');");
}


function DisplayWithSlide(div_id) {
    x=document.getElementById(div_id).style.display;
    if(x=='none') { 
        new Effect.BlindDown(div_id);
    } else { 
        new Effect.BlindUp(div_id);
    }
} 


