// JavaScript Document

//////////////////// INSERIR CARACTERES NO FORMULÁRIO ////////////////////

function formatar(src, mask) {
	var i = src.value.length;
	var saida = mask.substring(0,1);
	var texto = mask.substring(i)
	if (texto.substring(0,1) != saida) {
		src.value += texto.substring(0,1);
	}
}


//////////////////// EXECUTAR ACAO ////////////////////

function executeAcao (acao, tipo, id_registro) {
	if (confirm('Confirma?')) {
		var head = document.getElementsByTagName('head').item(0);
		var eScript = document.createElement("script");
		if (id_registro)
			eScript.setAttribute('src','/includes/acoes.php?acao='+acao+'&tipo='+tipo+'&id_registro='+id_registro);
		head.appendChild(eScript);
	} else {
		return false;
	}
}

//////////////////// POP UP ////////////////////

function popupWindow(mypage, myname, w, h, scrollo) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scrollo+',resizable=no,copyhistory=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus();
	}
}