var screenW = screen.width;
var screenH = screen.height;
var fsDIV;

function pageInit(){ 
	fsDIV = document.getElementsByTagName("div");
	fsDIV = fsDIV[0];
}

function goFullScreen(){
	w = screen.width;
	h = screen.height;
	leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	window.open("http://www.grupoeva.com.br/novo/eva.asp?full=true", null, "toolbar=no, menubar=no, top="+topPosition+" ,left="+leftPosition+" ,height="+h+", width="+w); 
}

function closeWindow(){
	window.close()
}
