/**
 * Función que redirige el browser al destino
 *
 */
function redirige(obj){
	
	var opcion=obj[obj.selectedIndex].value;
	
	if (opcion!=0){
		switch (opcion){
		//poner urls de cada pais cuando estén
			case "ar":
				location.href="/ar-rosen/";
			break;
			case "bo":
				location.href="/bo/index.html";
			break;
			case "cl":
				location.href="/rosenonline/";
			break;
			case "co":
				location.href="/co-rosen/";
			break;
			case "ec":
				location.href="/ec/index.html";
			break;
			case "pe":
				location.href="/pe-rosen/";
			break;
			case "uy":
				location.href="/uy/index.html";
			break;
			default:
				location.href="/home.html";
		}
	}
}
