function resolucion1024(){
			var retorno=false;
			if ( screen.height >= 768 || screen.width >= 1024 ){
				retorno=true;
			}else{
				retorno=false;
			}
			return retorno;
}

function estilo(nombre,archivo) {
	document.getElementById(nombre).href=archivo;
}

function aplicarEstiloResolucion(){
	if(resolucion1024()==true){
		estilo('estilo','../css/estilo1024.css');
	}
}