// JavaScript Document

function slideToggle(tagID,hideTagID){

	if(tagID != ''){
		$('#'+tagID).slideDown('slow');
	}
	if(hideTagID != ''){
		$('#'+hideTagID).slideUp('slow');
	}

}

function displayToggle(tagID,hideTagID){

	if(tagID != ''){
		elem = document.getElementById(tagID); 
		elem.style.display='inline';
	}
	if(hideTagID != ''){
		elem2 = document.getElementById(hideTagID);
		elem2.style.display='none';
	}

}

// JavaScript Document

function refresh_selects(elem){
	
	var propertyfield = $('#dep_'+elem.name).attr('value');
						
	if(propertyfield != undefined){
						
		opts = eval("dep_resource"+elem.id+"[elem.value]");
					
		if( opts == undefined){
			$('#'+propertyfield).html('<option value="">...</option>');
		}else{
			$('#'+propertyfield).html(opts);
		}
					
	}
						
	while(propertyfield != undefined){
					
		var propertyfield = $('#dep_'+$('#'+propertyfield).attr('name')).attr("value");
					
		if(propertyfield != undefined){
			$('#'+propertyfield).html('<option value="">...</option>');
		}
	}
	
}




$(document).ready(function(){
	$('select').change(function(){ refresh_selects(this); });
}); 