//--------------------------calendar functions ----------------------------------

function view(month,day,year,rrc_id,action) {
	document.calform.sel_month.value = month;
	document.calform.sel_day.value = day;
	document.calform.sel_year.value = year;
	document.calform.rrc_id.value = rrc_id;
	document.calform.action = action;
	document.calform.submit();
}

function month(month,day,year,rrc_id,action) {
	document.calform.sel_month.value = month;
	document.calform.sel_day.value = day;
	document.calform.sel_year.value = year;
	document.calform.rrc_id.value = rrc_id;
	document.calform.action = "#top";
	
	document.calform.submit();
}

function setdate() {
	document.calform.sel_month.value = document.calform.dropdown_month.value;
	document.calform.sel_day.value = document.calform.dropdown_day.value;
	document.calform.sel_year.value = document.calform.dropdown_year.value;
	document.calform.submit();
}	

function test(){
	alert("this is a test");
}

function SignInSheet(nCourseID){
	var URL;
	URL = "/rrc/register/sign_in_sheet.asp?CourseID=" + nCourseID;
	
	//The old URL def
	//URL = "/register/sign_in_sheet.asp?CourseID=" + nCourseID;
	
	//alert(URL);
	//window.location=URL;
	var selections = window.showModalDialog(URL,"Sign-In Sheet","dialogWidth:400px;dialogHeight:400px;center:yes;");	
}
//-----------------------------------end calendar function ------------------