function fnOpenWindow(pURL,pWinName,pFeatures) {
	window.open(pURL,pWinName,pFeatures);
	//Exemplo
	//fnOpenWindow('exemplo.asp','popup','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=800,height=600')
}
