function switchDiv(obj) {
	var tid = document.getElementById(obj);
	tid.style.display = (tid.style.display == 'none') ? '' : 'none';
}

function popup(path,ancho,altura) {
	window.open(path,+'Lucania','toolbar=no, location=no, directories=no, status=no,resizable=no,width='+ancho+',height='+altura);
}

function Ver(arg) {
	switchDiv(arg);
}
function resize() {
	if(screen.width == 800)
	document.body.style.zoom = 0.86;
}

