var domClassName = null;

$(document).ready(function() {			
	$('#header .info select').each(function() {
		$(this).change(function() {					
			var href = $(this).val();
			if(href != 0) {
				document.location.href = href;
			}
		});
	});
});
		

		
function browserSwitch() {
	if(document.all) {   
		this.domClassName = 'className';
	} else {
		this.domClassName = 'class';
	}	
}
				
function calidaClear(id) {			
	element = document.getElementById(id);
			
	element.value = "";
	element.style.color = "#000000";
	element.style.background = "#FFFFFF";				
}