
$(document).ready(function() {


	if ($('#lateral').height() > $('#contenedor').height()) {
		$('#contenedor').height($('#lateral').height() + 100);
	//	alert($('#lateral').height());
	} else {
		$('#lateral').height($('#contenedor').height());
	//	alert($('#contenedor').height());
	}

	// ABRIR LINKS EXTERNOS EN VENTANA NUEVA
	$("a[@rel='external']").click(function(){this.target = "_blank";});

});


function volver() {
	window.history.back();
	return false;
}

function abrir( web, alto, ancho ) {
	if ( window.pantmsg ) { pantmsg.close(); }
	pantmsg = open(web, 'pantmsg',"top=" + (screen.height - alto) / 2 + ",left=" + (screen.width - ancho) / 2 + ",toolbar=no,width=" + ancho + ",height=" + alto + ",directories=no,status=no,scrollbars=no,resize=no,menubar=no");
	pantmsg.focus();
}



