// JavaScript Document
function FillLevels(selectedSC,targetLevel){			
	var theSchoolCode=selectedSC.options[selectedSC.options.selectedIndex].value;
	window.location.href='index.php?cmd=register&schoolcode='+theSchoolCode;
}

function FillSections(selectedSC,selectedLevel,targetSection){			
	var theSchoolCode=selectedSC.options[selectedSC.options.selectedIndex].value;
	var theLevel=selectedLevel.options[selectedLevel.options.selectedIndex].value;	
	window.location.href='index.php?cmd=register&schoolcode='+theSchoolCode+'&levelid='+theLevel;
}

function MarkSection(selectedSC,selectedLevel,targetSection){
	var theSchoolCode=selectedSC.options[selectedSC.options.selectedIndex].value;
	var theLevel=selectedLevel.options[selectedLevel.options.selectedIndex].value;	
	var theSection=targetSection.options[targetSection.options.selectedIndex].value;	
	window.location.href='index.php?cmd=register&schoolcode='+theSchoolCode+'&levelid='+theLevel+'&sectionid='+theSection;	
}

function FillSections2(selectedLevel,targetSection){
	var theLevelID=selectedLevel.options[selectedLevel.options.selectedIndex].value;
	window.location.href='index.php?cmd=syregister&levelid='+theLevelID;	
}

function FillSY(currLink, selectedSY){
	var theSY=selectedSY.options[selectedSY.options.selectedIndex].value;
	window.location.href=currLink+'&sy='+theSY;
}

function FillLevels2(currLink, selectedLevel){
	var theLevel=selectedLevel.options[selectedLevel.options.selectedIndex].value;
	window.location.href=currLink+'&level='+theLevel;	
}

function MarkSection2(selectedLevel,targetSection){
	var theLevel=selectedLevel.options[selectedLevel.options.selectedIndex].value;	
	var theSection=targetSection.options[targetSection.options.selectedIndex].value;	
	window.location.href='index.php?cmd=syregister&levelid='+theLevel+'&sectionid='+theSection;	
}
