function directToPage()
{
	var SelectedValue	=	document.getElementById("FormQuickLinks").value;
	
	if(SelectedValue == "education centre of australia")
		document.location = "http://www.eca.edu.au";		
	else if(SelectedValue == "victoria university sydney location")
		document.location = "http://www.eca.edu.au/index.php.45.html";
	else if(SelectedValue == "english language school in sydney")
    	document.location = "http://www.elsis.edu.au";
	else if(SelectedValue == "nursing training services")
		document.location = "http://www.nts.edu.au";
}

function swapDisplay(id)
{
	var Swap	=	document.getElementById("div_" + id);
	if(Swap.style.display == "" || Swap.style.display == "none" )
		Swap.style.display = "block";
	else
		Swap.style.display	=	"none";
}