// JavaScript Document


function change_location(origin){

	value1 = null;
	value2 = null;
	str=null;
	
	if(origin==1) str="noticias.php";
	else if(origin==2) str="documentos.php";
	else if(origin==3) str="agenda.php";
	
		if(origin!=3)value1 = $F('country');
		value2 = $F('themes');
	
	if((value1!=0)&&(value2!=0)){
		document.location=str+"?p="+value1+"&t="+value2;
	}else if(value1!=0){
		document.location=str+"?p="+value1;
	}else if(value2!=0){
		document.location=str+"?t="+value2;
	}else{
		document.location=str;
	}
	
}