
function abrirUIDialog(id, w, h, modal){
    if (!h) {
        h = 600
    }
    if (!w) {
        h = 500
    }
    modal = false;
    var uiDialog = $("#" + id).dialog({
        modal: modal,
        width: w,
        height: h,
        position: [250, 150]
    });
    uiDialog.dialog("open")
}

function selectRegisterTab()
{
	var $tabs = $('#content-tabs').tabs();
	$tabs.tabs('select', 2);
	location.href= '#';
}

function chkForm(message)
{
	if((document.getElementById('varP_USER').value != '') && (document.getElementById('varP_PASS').value != '')) {
		doSubmitPOST(message);
	} else {
		alert(AAI51_msgErroLog);
	}
}


