<!-- //
	function botton(nomebut, valbut, nomeform, act)   {
		str = 'document.forms.' + nomeform + '.' + nomebut + '.value = "' + valbut + '"';
		eval(str);
		if (act != '') {
			str = 'document.forms.' + nomeform + '.action = '+ act;
			eval(str);
		} //endif
		str = 'document.forms.' + nomeform + '.submit() ';
		eval(str);
	} //endfunction

	function bot_confirm(nomebut, valbut, nomeform, act, msg)   {
    	if (confirm(msg) ) {
			botton(nomebut, valbut, nomeform, act);
    	} //endif
	} //endfunction
   
	function bot_window(nomebut, valbut, nomeform, act, wpath, wparam)    {
		window.open(wpath, '', wparam);
		botton(nomebut, valbut, nomeform, act)
	} //endfunction
	
	function bot_frame(nomebut, valbut, nform, targ1, act1, targ2, act2)	{
		str = 'document.forms[' + nform + '].' + nomebut + '.value = "' + valbut + '"';
		eval(str);
		document.forms[nform].target = targ1;
		document.forms[nform].action = act1;
		document.forms[nform].submit();
		document.forms[nform].target = targ2;
		document.forms[nform].action = act2;
		document.forms[nform].submit();
	} //endfunction

// -->

