﻿function post() {
    __doPostBack('__Page', 'Post');
}

//Mensagem de erro customizada, abre a shadowBox
function Mensagem(descricaoErro, caminho) {

    var msg;

    msg = '<div style="background-color: #fff; margin:5px; color: #000; padding:10px;font-size:10pt;font-family:Tahoma; height: 170px; text-align: justify;">' +
          '<table width="100%" border="0" celpadding="0" celspacing="0">' +
          '<tr>' +
          '<td><img src="' + caminho + 'js/images/alert.gif" alt="" /></td>' +
          '<td style="padding-left: 10px;">' +
          descricaoErro +
          '</td>' +
          '</tr>' +
          '</table>' +
          '</div>';

    Shadowbox.open({
        player: 'html',
        content: msg,
        height: 200,
        width: 400,
        title: 'Atenção'
    });
}

//*** Modal shadow box
function ModalBox(url, width, height, tituloJanela) {

    Shadowbox.open({
        player: 'iframe',
        content: url,
        width: width,
        height: height,
        title: tituloJanela
    });

}

//*** Modal shadow box
function ShadowImage(url, width, height, tituloJanela) {

    Shadowbox.open({
        player: 'img',
        content: url,
        width: width,
        height: height,
        title: tituloJanela
    });

}

//*** Modal shadow box
function ShadowSwf(url, width, height, tituloJanela) {

    Shadowbox.open({
        player: 'swf',
        content: url,
        width: width,
        height: height,
        title: tituloJanela
    });

}