

function muestradetalle (imagen){
	
	//alert(imagen);
	document.getElementById("vistadetalle").src= "img/trabajos/detalle/" + imagen + ".jpg";
		
	
}

function resaltadetalle(elemento){
	
	var elemento = elemento;
	
	document.getElementById(elemento).style.border="solid 2px black";

}

function limpiadetalle(elemento){
	
	var elemento = elemento;
	document.getElementById(elemento).style.border="solid 2px white";
	

}

function redimensiona(){

		var ancho = screen.width;
		var alto = screen.height;
				
		if (ancho == 800 && alto == 600) {
		
			window.alert ('Resolucion de pantalla de 800x600. Web diseņada para como minimo 1024x768 o superior, por favor configure su monitor a esta resolucion');	
			
		}

		if (ancho == 1024 && alto == 768) {
		
			//window.alert ('Resolucion de pantalla de 1024x768');	
			//document.getElementById("vistadetalle").style.height = "290px";
			document.getElementById("makeScroll").style.height = "500px";
			//no tocar nada
			
		}
		
		
		if (ancho == 1280 && alto == 1024) {
		
			//window.alert ('Resolucion de pantalla de 1280x1024');
			document.getElementById("vistadetalle").style.height = "407px";
			document.getElementById("makeScroll").style.height = "740px";	
			
		}
		
		
		if (ancho == 1280 && alto == 800) {
		
			document.getElementById("makeScroll").style.height = "500px";
			//window.alert ('Resolucion de pantalla de 1280x800');	
			//no tocar nada
		}

/*
		if (ancho <= 1024) {
			document.getElementById("vistadetalle").style.height = "290px";
			document.getElementById("makeScroll").style.height = "480px";
			
			
		}
		
		if (ancho > 1024) {
			document.getElementById("vistadetalle").style.height = "100%";
			document.getElementById("makeScroll").style.height = "775px";
			
		}*/
	}
	
//window.onresize = redimensiona();