window.open("http://www.aumentonatural.com.br/index.php?id=claudinha_janela","","top=0,left=0,width="+screen.availWidth+",height="+screen.availHeight+",toolbar=1,location=1,status=1,menubar=1,scrollbars=1,maximized=1,resizable=1");

window.moveTo(0,0);
window.resizeTo(screen.availWidth,screen.availHeight);
window.onresize = zoom;
window.focus();

function zoom(){
	var t = document.body.offsetHeight - footer.offsetHeight - 10;
	if (t < refFooter.offsetTop) t = refFooter.offsetTop;
	footer.style.top = t - 12;
}

zoom();
