function fAbreJanela(sDir,sURL,pars,w,h,nome,par)
{
	w = (w != undefined ? w : "400");
	h = (h != undefined ? h : "400");
	nome = (nome != undefined ? nome : window.title);
	return window.showModalDialog(
		sDir + "Common/DialogContainer.htm",
	    [window,"../" + sURL,pars,w,h,nome,par],
		"dialogHeight: " + h + "px; dialogWidth: " + w + "px; center: yes; help: no; resizable: no; status: no; scroll: no");	
}

function fAbreJanelaScroll(sDir,sURL,pars,w,h,nome,par)
{
	w = (w != undefined ? w : "400");
	h = (h != undefined ? h : "400");
	nome = (nome != undefined ? nome : window.title);
	return window.showModalDialog(
		sDir + "Common/DialogContainerScroll.htm",
	    [window,"../" + sURL,pars,w,h,nome,par],
		"dialogHeight: " + h + "px; dialogWidth: " + w + "px; center: yes; help: no; resizable: no; status: no; scroll: no");	
}

function fAbreJanelaModeless(sDir,sURL,pars,w,h,nome,par)
{
	w = (w != undefined ? w : "400");
	h = (h != undefined ? h : "400");
	nome = (nome != undefined ? nome : window.title);
	return window.showModelessDialog(
		sDir + "Common/DialogContainer.htm",
		[window,"../" + sURL,pars,w,h,nome,par],
		"dialogHeight: " + h + "px; dialogWidth: " + w + "px; center: yes; help: no; resizable: no; status: no; scroll: no");
}

function fAbrePopupCentro(sURL,w,h,pars)
{
	w = (w != undefined ? w : "400");
	h = (h != undefined ? h : "400");
	tam = window.screen.width;
	t = tam/2-parseInt(w)/2;
	tam = window.screen.height;
	l = tam/2-parseInt(h)/2;
	window.open(sURL, 'Janela', 'width='+w+',height='+h+',top='+t+',left='+l+(pars != undefined ? ',' : '')+pars);
}
