
//2008 RAVES DISPLAY CODE
document.write("<table id='old_rave_select'><th colspan='2' align='center' style='font-family:impact; font-size:11pt;'>CHOOSE A RAVE</th><tr><td align='center' valign='top'><fieldset><legend>2008 Raves</legend><form name='rave_selector08'><select name='month'><option value='jan_08'>PUBLIC BATHS</option><option value='feb_08'>HOCKEY</option><option value='mar_08'>INTERNET</option><option value='apr_08'>AXE GEL</option><option value='may_08'>LOLCATS</option><option value='jun_08'>FUNNY TV</option><option value='jul_08'>SPARKS</option><option value='aug_08'>AUDIOSURF</option><option value='oct_08'>CEREAL SHAKE</option><option value='nov_08'>BEDSHEETS</option></select><input type='button' name='go_button' value='GO' onclick='goto_rave08(); return false;'></form></fieldset></td>");



//2007 RAVES DISPLAY CODE
document.write("<td align='center' valign='top'><fieldset><legend>2007 Raves</legend><form name='rave_selector07'><select name='month'><option value='dec_07'>XMAS MUSIC</option><option value='nov_07'>EGGNOG</option><option value='oct_07'>AUTUMN</option><option value='sep_07'>YAKINIKU</option><option value='aug_07'>OPERA</option><option value='jul_07'>MOVIES I LIKE</option></select><input type='button' name='go_button' value='GO' onclick='goto_rave07(); return false;'></form></fieldset></td></tr></table>");




//2008 SELECTOR
function goto_rave08() {
	var selected_rave;
	selected_rave = document.rave_selector08.month.value;

	switch(selected_rave) {
	    case 'nov_08':  location.href="http://moginspace.us/raves/rave_nov_08.htm"; break;
		case 'oct_08':  location.href="http://moginspace.us/raves/rave_oct_08.htm"; break;
		case 'aug_08':  location.href="http://moginspace.us/raves/rave_aug_08.htm"; break;
		case 'jul_08':  location.href="http://moginspace.us/raves/rave_jul_08.htm"; break;
		case 'jun_08':  location.href="http://moginspace.us/raves/rave_jun_08.htm"; break;
		case 'may_08':  location.href="http://moginspace.us/raves/rave_may_08.htm"; break;
		case 'apr_08':  location.href="http://moginspace.us/raves/rave_apr_08.htm"; break;
		case 'mar_08':  location.href="http://moginspace.us/raves/rave_mar_08.htm"; break;
		case 'feb_08':  location.href="http://moginspace.us/raves/rave_feb_08.htm"; break;
		case 'jan_08':  location.href="http://moginspace.us/raves/rave_jan_08.htm"; break;
		default: ; //do nothing
	}
}


//2007 SELECTOR
function goto_rave07() {

	var selected_rave;
	selected_rave = document.rave_selector07.month.value;

	switch(selected_rave) {
		case 'dec_07':  location.href="http://moginspace.us/raves/rave_dec_07.htm"; break;
		case 'nov_07':  location.href="http://moginspace.us/raves/rave_nov_07.htm"; break;
		case 'oct_07':  location.href="http://moginspace.us/raves/rave_oct_07.htm"; break;
		case 'sep_07':  location.href="http://moginspace.us/raves/rave_sep_07.htm"; break;
		case 'aug_07':  location.href="http://moginspace.us/raves/rave_aug_07.htm"; break;
		case 'jul_07':  location.href="http://moginspace.us/raves/rave_jul_07.htm"; break;
		default: ; //do nothing
	}
}

