// JavaScript Document
winWidth = 955; // sets a default width for browsers who do not understand screen.width below
winheight = 600; // ditto for height

if (screen){ // weeds out older browsers who do not understand screen.width/screen.height
   winWidth = screen.width-10;
   winHeight = screen.height-60;
}
	
function Abre(win){
	
	newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=no,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
}

function Abre2(win){
	
	newWindow = window.open(win,'newWin','toolbar=no,location=no,scrollbars=yes,resizable=yes,width='+winWidth+',height='+winHeight+',left=0,top=0');
	newWindow.focus();
}

function Launch(page, width, height) { 
		OpenWin = this.open(page, "wtcbrasil", "toolbar=no, menubar=no , scrollbars=yes, resizable=no, width=" + width + ", height=" + height + ", top=" + (screen.height/2 - height/2) + ", left=" + (screen.width/2 - width/2) + "\""); 
} 

