function cargarEstilo (fichero)
{
	// cargar la hoja de estilos correspondiente a la definicion de la pantalla
	if (screen.width > 1600)
	{
		fichero = fichero + "_AltaResolucion.css";
	}
	else if ((screen.width <= 1600) || (screen.width > 1280))
	{
		fichero = fichero + "_MediaResolucion.css";
	}
	else if ((screen.width <= 1280) || (screen.width > 1024))
	{
		fichero = fichero + "_BajaResolucion.css";
	}
	else if (screen.width <= 1024)
	{
		fichero = fichero + "_MuyBajaResolucion.css";
	}
	document.write('<LINK href="../Comunes/css/' + fichero + '" type="text/css" rel="stylesheet">');
}
