//////////////Caixas de Alerta//////////////////

function alert(mensagem)
{
var cancel = "Fechar Alerta"

alObj=document.createElement("div");
document.body.appendChild(alObj);

alData='<div id="block_holder"><div id="block">'
alData+='<!--[if IE]><iframe class="invisivel" style="height: 150px; width: 406px; scrolling="no" frameborder="0" ></iframe><![endif]--><table width="360" height="139" border="0" cellspacing="0" cellpadding="0">'
alData+='<tr><td height="15" width="13" valign="bottom"><img src="../../apl_imagens/top_esq.png" width="13" height="15" /></td>'
alData+='<td background="../../apl_imagens/top.gif" height="15">&nbsp;</td><td width="13" height="15" valign="bottom"><img src="../../apl_imagens/top_dir.png" width="13" height="15" /></td>'
alData+='</tr><tr><td background="../../apl_imagens/esq.gif" width="13" height="120">&nbsp;</td><td bgcolor="#f8f9fb" width="349" height="101" align="center">'
alData+='<div style="width:auto"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="23%"><img src="../../apl_imagens/icone_alerta.png" width="60" height="62" /></td>'
alData+='<td width="77%" align="left">'+mensagem+'</td></tr></table></div><div style="text-align:center; width:260; padding-top:10px; padding-left:132px"><a  href="javascript:clal();"  class="squarebutton lbAction" style="margin-left: 6px;"><span>'+cancel+'</span></a></div></td><td background="../../apl_imagens/dir.gif" width="13" height="120"></td>'
alData+='</tr><tr><td height="15"><img src="../../apl_imagens/bot_esq.png" width="13" height="15" /></td><td background="../../apl_imagens/bot.gif">&nbsp;</td>'
alData+='<td width="13" height="15"><img src="../../apl_imagens/bot_dir.png" width="13" height="15" /></td></tr></table>'
alData+='</div></div>';

alObj.innerHTML = alData;

}


function doisbotoes(pagina, opcao1, mensagem)
{
var cancel = "Cancelar"

alObj=document.createElement("div");
document.body.appendChild(alObj);

alData='<div id="block_holder"><div id="block">'
alData+='<!--[if IE]><iframe class="invisivel" style="height: 150px; width: 406px; scrolling="no" frameborder="0" ></iframe><![endif]--><table width="368" height="139" border="0" cellspacing="0" cellpadding="0">'
alData+='<tr><td height="15" width="13" valign="bottom"><img src="../../apl_imagens/top_esq.png" width="13" height="15" /></td>'
alData+='<td background="../../apl_imagens/top.gif" height="15">&nbsp;</td><td width="13" height="15" valign="bottom"><img src="../../apl_imagens/top_dir.png" width="13" height="15" /></td>'
alData+='</tr><tr><td background="../../apl_imagens/esq.gif" width="13" height="120">&nbsp;</td><td bgcolor="#f8f9fb" width="349" height="101" align="center">'
alData+='<div style="width:auto"><table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="23%"><img src="../../apl_imagens/icone_alerta.png" width="60" height="62" /></td>'
alData+='<td width="77%" align="left">'+mensagem+'</td></tr></table></div><div style="text-align:center; width:260; padding-left:120px"><a class="squarebutton" href="'+pagina+'"><span>'+opcao1+'</span></a><a  href="javascript:clal();"  class="squarebutton lbAction" style="margin-left: 6px;"><span>'+cancel+'</span></a></div></td><td background="../../apl_imagens/dir.gif" width="13" height="120"></td>'
alData+='</tr><tr><td height="15"><img src="../../apl_imagens/bot_esq.png" width="13" height="15" /></td><td background="../../apl_imagens/bot.gif">&nbsp;</td>'
alData+='<td width="13" height="15"><img src="../../apl_imagens/bot_dir.png" width="13" height="15" /></td></tr></table>'
alData+='</div></div>';
//Uso: javascript:excluir('http://www.artmx.com.br', 'Confirmar', 'Voc&ecirc; tem certeza que deseja excluir este &iacute;tem permanentemente?');


alObj.innerHTML = alData;

}

///// Remover Alerta

function clal()
{
document.body.removeChild(alObj);
alObj=null;
}

/////////////////////////////////////////////////