function fnMenuRedirect(page){
switch(page)
{
	case 'presentacion':
		document.location.href="presentacion.shtml";
		break;
	case 'soluciones':
		document.location.href="soluciones.shtml";
		break;
	case 'productos':
		document.location.href="productos.shtml";
		break;
	case 'socios':
		document.location.href="socios.shtml";
		break;
	case 'clientes':
		document.location.href="clientes.shtml";
		break;
	case 'contacto':
		document.location.href="contacto.shtml";
		break;	
}

 
}//end of fnMenuRedirect
