function cargarPagina(us)
{
	var proc
	var proc2
	
	/* Recojo el valor del pais seleccionado */
	proc=document.f1.select_pais[document.f1.select_pais.selectedIndex].value ;
	
	if (proc == 'de') 
	{
	   window.open("http://www.safetykleen.de","_self");
	} 
	else if (proc == 'ch') 
	{
	   window.open("plantilla_construccion.php?len=ch","_self");
	}
	else if (proc == 'ja') 
	{
	   window.open("plantilla_construccion.php?len=ja","_self");
	}
	else 
	{
		/* alert(proc); */
		proc2="index2.php?len="+proc;
		/* alert(proc2); */
		window.open(proc2,"_self");
	} 

}