// JavaScript Document

var fnEntrar = function(){
	var URL = "site/";
	var height = screen.height;
	var width =  screen.width;
	var meuLeft = 0;
	var meuTop = 0;
	var windowSite = window.open(URL, "site", "menubar = no, toolbar = no, locationbar = no, scrollbars = no, directories = no, resizable = no, status = no, personalbar = no, width = " + width + ", height = " + height + ", left = " + meuLeft + ", top = " + meuTop);
	windowSite.focus();	
};
