// JavaScript Document

//******************************

// Criar Janela

//******************************

function criarJanela(href,nome,params) {

	window.open(href,nome,params);

}





function NewWindow(link)

{

	//targetWidth = screen.availWidth-280;

	//targetHeight = screen.availHeight-480;

	targetWidth = 600;

	targetHeight = 500;

	windowLeft = (screen.availWidth - targetWidth -10) / 2;

	windowTop = (screen.availHeight - targetHeight- 10) / 2;

	

	window.open(link, 'mywin', 'scrollbars=no,toolbar=no,location=no,top=' + windowTop + ',left='+ windowLeft + ',width=' + targetWidth + ',height=' + targetHeight);

}
