
		function checkFeatured(checkThisPPL,schidlist,environ)
        {
            return;
			var url="http://" + environ + ".usaeducationguides.com/GetFeatured.do?jsoncallback=?&format=json&ppl=" + checkThisPPL + "&scidList=" + schidlist; //
			jQuery.getJSON(url,
			function(data){
				switchFeatured(data);
			}
		);
		}
		function switchFeatured(data){
			var featured=data.items;
			for (var i=0;i< featured.length; i++){
				document.getElementById(featured[i].divName).style.visibility = "visible";
                document.getElementById(featured[i].scid).value=featured[i].dynInfoZapId;
				show('otherSchoolsButtonDiv');
			}
		}
		function validate(){
			for (counter = 0; counter < document.getElementsByName("schoolList").length; counter++){
				if (document.getElementsByName("schoolList")[counter].checked){
					return true;
				}
			}
			alert("Please select at least one school");
			return false;
		}
		function hide(layer_ref) {
			if (document.all) { //IS IE 4 or 5 (or 6 beta)
				eval( "document.all." + layer_ref + ".style.display = 'none'");
			}
			if (document.layers) { //IS NETSCAPE 4 or below
				document.layers[layer_ref].display = 'none';
			}
			if (document.getElementById &&!document.all) {
				hza = document.getElementById(layer_ref);
				hza.style.display = 'none';
			}
		}
		function show(layer_ref) {
			if (document.all) { //IS IE 4 or 5 (or 6 beta)
				eval( "document.all." + layer_ref + ".style.display = 'block'");
			}
			if (document.layers) { //IS NETSCAPE 4 or below
				document.layers[layer_ref].display = 'block';
			}
			if (document.getElementById &&!document.all) {
				hza = document.getElementById(layer_ref);
				hza.style.display = 'block';
			}
		}

