<!--
/******************************************
* Auto Maximizar Script - HTML.Dynamico 2001
* Mas Scripts y Recursos para tu web en:
* http://www.htmldynamico.cjb.net
******************************************/
top.window.moveTo(0,0);
if (document.all) {
	top.window.resizeTo(screen.availWidth,screen.availHeight);
} else if (document.layers||document.getElementById) {
	if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
		top.window.outerHeight = screen.availHeight;
		top.window.outerWidth = screen.availWidth;
	}
}
//-->
function showFoto(src, str){
	var a_false = document.createElement("A");
	a_false.rel = "lightbox";
	a_false.title = str;
	a_false.href = src;
	myLightbox.start(a_false);
	a_false = null;
}
var xmlhttp;
var url_site = "http://verdelima.com.br";
function loadConteudo(page){
	xmlhttp = new XMLHttpRequest();
	xmlhttp.open("GET", url_site, true);
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState == 4){
			if(xmlhttp.status == 200){
				urchinTracker(page);
			};
		};
	};
	xmlhttp.send(null);
}