<!--
var winwidth	= 782;
var winheight	= 500;
var winleft		= 200;
var wintop		= 200;

function centeredWindow(url) 
{
	if (parseInt(navigator.appVersion) >= 4)
	{
		winleft = (screen.width / 2) - (winwidth / 2); 
		wintop = (screen.height / 2) - (winheight / 2);
		var attr = 'top=' + wintop + ',left=' + winleft + ',height=' + winheight + ',width=' + winwidth + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=1';
	} 
	else 
	{
		winleft = (screen.width - winwidth) / 2;
		wintop = (screen.height - winheight) / 2;
		var attr = "left=" + winleft + ",top=" + wintop + ",scrollbars=no,resizable=no,width=" + winwidth + ",height=" + winheight;
	}
		
	window.open(url, 'Pesquisa', attr);
}
function openWindow(url, width, height) 
{
	if (parseInt(navigator.appVersion) >= 4)
	{
		winleft = (screen.width / 2) - (width / 2); 
		wintop = (screen.height / 2) - (height / 2);
		var attr = 'top=' + wintop + ',left=' + winleft + ',height=' + height + ',width=' + width + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0';
	} 
	else 
	{
		winleft = (screen.width - winwidth) / 2;
		wintop = (screen.height - winheight) / 2;
		var attr = "left=" + winleft + ",top=" + wintop + ",scrollbars=no,resizable=no,width=" + width + ",height=" + height;
	}
	window.open(url, '', attr);
}
function openWindowScrolls(url, width, height) 
{
	if (parseInt(navigator.appVersion) >= 4)
	{
		winleft = (screen.width / 2) - (width / 2); 
		wintop = (screen.height / 2) - (height / 2);
		var attr = 'top=' + wintop + ',left=' + winleft + ',height=' + height + ',width=' + width + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0';
	} 
	else 
	{
		winleft = (screen.width - winwidth) / 2;
		wintop = (screen.height - winheight) / 2;
		var attr = "left=" + winleft + ",top=" + wintop + ",scrollbars=yes,resizable=no,width=" + width + ",height=" + height;
	}
	window.open(url, '', attr);
}
//-->