/****************************************************

 Biblioteca de funções Javascript
 My Solution Inf. Ltd. (webmaster@mysolution.com.br)

****************************************************/

function Abre(strURL, intWidth, intHeight) {
	obj_janela = window.open(strURL, "FRXX", "toolbar=no,status=no,scrollbars=yes,resizable=yes,width=" + intWidth + ",height=" + intHeight + ",top=0,left=0");
	obj_janela.resizeTo(intWidth, intHeight);
	obj_janela.focus();
	}

function Trim(str) {
	str = str.replace(/^ */, "");
	str = str.replace(/ *$/, "");
	return str;
	}



