<!--
// Determina la resolución de pantalla
// Martin Gunter - 1º/08/07 11:33 hs.
var d=new Date();
var expires=d.getTime()+314496000; // cookie expires
var domain="tierradelfuego.org.ar"; // your domain name
var resolution=screen.width+"x"+screen.height; // get the screen width and height
var resolution=screen.width; // get the screen width and height
// alert(resolution);

function show_hide(variable) {
	var p = document.getElementById(variable);
	var div = document.getElementById(variable);

	if (p.style.width == '') {
		div.style.width = '981px';
		div.style.height = '60px';
		div.style.backgroundPosition = 'bottom left';
	}
	else {
	div.style.width = '981px';
	div.style.height = '199px';
	div.style.border = 'none';
	div.style.backgroundPosition = 'top left';
	p.style.width = '';
	}
}