// JavaScript Document
function go_selected_date(url){		  
	start_date = document.theform.start_date.value;
	location.href = url + "start_date=" + start_date;
}

function go_selected_theme(url){
	theme = document.theform.theme_id.value;
	location.href = url + "theme_ids[0]=" + theme;
}

function go_selected_offering(url){
	offering = document.theform.offering_id.value;
	location.href = url + "offering_ids[0]=" + offering;
}

function go_selected_age_group(url){
	age = document.theform.age_id.value;
	location.href = url + "age_ids[0]=" + age;
}

function go_selected_sc_session(url){
	sc_session = document.theform.sc_session_id.value;
	location.href = url + "sc_session_ids[0]=" + sc_session;
}

function go_selected_period(url){
	period = document.theform.period_id.value;
	location.href = url + "period_ids[0]=" + period;
}

function gotopay(){
	var msg = "You will now be redirected to our credit card payment site.";
    msg += "\n\nWhen you have finished entering your information, please allow the process to return you to the ROM's site to finalize your order.";
    alert(msg);
}
