<!--
function AbrePagina(page, alvo) {
	ver=navigator.appVersion.substring(0,1);
	if (ver >= 4){
		if (screen.width=="640") {
			vWidth=477; vHeight=422; vTop=0; vLeft=153;}
		else {
			if (screen.width=="800"){
				vWidth=667; vHeight=540; vTop=0; vLeft=123;}
			else {
				if (screen.width=="1024"){
					vWidth=865; vHeight=710; vTop=0; vLeft=147;}
				else {
					vWidth=410; vHeight=410; vTop=0; vLeft=180;
				}
			}
		}
	}
	else {
		vWidth=410; vHeight=380; vTop=0; vLeft=180;
	};
	winpop2=window.open(page, alvo,'toolbar=NO,menubar=NO,titlebar=NO,statusbar=No,status=No,scrollbars=yes,resizable=YES, width='+vWidth+',height='+vHeight+',top='+vTop+',left='+vLeft);
	winpop2.focus();
}

// EX: AbrePagina("teste.asp?param1=xyz","nova_window");
//-->