// ---------------------------------------------------------------------
//  FUNCIONES JAVASCRIPT
// ---------------------------------------------------------------------



// ---------------------------------------------------------------------
// Función para cargar la hoja de estilo en funcion del navegador
// ---------------------------------------------------------------------

// check the alignment on a number of cells in a table. 
var meta = document.getElementsByTagName("META"); 
var lang = meta[0].getAttribute("content");
var charset = lang.substring(19);

var idioma = "no-arabic";
if (charset=="ISO-8859-6"){idioma="arabic";}
//alert(navigator.appVersion);
if (navigator.appName=="Microsoft Internet Explorer" || parseFloat(navigator.appVersion)>=5) {
	if (idioma=="arabic"){
		document.writeln('<LINK rel="stylesheet" type="text/css" href="/css/ie_ar.css">');
	}
	else{
		document.writeln('<LINK rel="stylesheet" type="text/css" href="/css/ie.css">');
	}
}
else {
	if (idioma=="arabic"){
		document.writeln('<LINK rel="stylesheet" type="text/css" href="/css/ns_ar.css">');
	}
	else{
		document.writeln('<LINK rel="stylesheet" type="text/css" href="/css/ns.css">');
	}
}
