// JavaScript Document

// formatação de campo:
function formatar(src, mask) {
var i = src.value.length;
var saida = mask.substring(i,i+1);
var ascii = event.keyCode;
if (saida == "A") {
if ((ascii >=97) && (ascii <= 122)) { event.keyCode -= 32; }
else { event.keyCode = 0; }
} else if (saida == "0") {
if ((ascii >= 48) && (ascii <= 57)) { return }
else { event.keyCode = 0 }
} else if (saida == "#") {
return;
} else {
src.value += saida;
i += 1
saida = mask.substring(i,i+1);
if (saida == "A") {
if ((ascii >=97) && (ascii <= 122)) { event.keyCode -= 32; }
else { event.keyCode = 0; }
} else if (saida == "0") {
if ((ascii >= 48) && (ascii <= 57)) { return }
else { event.keyCode = 0 }
} else { return; }
}
}
//-------------------------------------------------------------------------------

// O colégio:
function ocolegio() {
missinginfo = "";
if (document.form.x1.value == "") {
missinginfo += "\n     -  Texto";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Os seguintes dados estão em branco:\n" +
missinginfo + "\n_____________________________" +
"\nPor favor, preencha os dados corretamente!";
alert(missinginfo);
return false;
}
}
//-------------------------------------------------------------------------------

// Cursos Novos:
function cursosNovos() {
missinginfo = "";
if (document.form.x1.value == "") {
missinginfo += "\n     -  Nome do curso";
}
if (document.form.x7.value == "") {
missinginfo += "\n     -  Horário (inicio)";
}
if (document.form.x8.value == "") {
missinginfo += "\n     -  Horário (término)";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Os seguintes dados estão em branco:\n" +
missinginfo + "\n_____________________________" +
"\nPor favor, preencha os dados corretamente!";
alert(missinginfo);
return false;
}
}
// Novo Evento:
function eventoNovo() {
missinginfo = "";
if (document.form.x1.value == "") {
missinginfo += "\n     -  Nome do evento";
}
if (document.form.x2.value == "") {
missinginfo += "\n     -  Data do evento";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Os seguintes dados estão em branco:\n" +
missinginfo + "\n_____________________________" +
"\nPor favor, preencha os dados corretamente!";
alert(missinginfo);
return false;
}
}
// Enquete:
function enquete() {
missinginfo = "";
if (document.form.x.value == "") {
missinginfo += "\n     -  Pergunta da Enquete";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Os seguintes dados estão em branco:\n" +
missinginfo + "\n_____________________________" +
"\nPor favor, preencha os dados corretamente!";
alert(missinginfo);
return false;
}
}
// Instalação:
function instalacao() {
missinginfo = "";
if (document.form.x2.value == "") {
missinginfo += "\n     -  Nome da instalação";
}
if (document.form.habi.value == "") {
missinginfo += "\n     -  Imagem da instalação";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Os seguintes dados estão em branco:\n" +
missinginfo + "\n_____________________________" +
"\nPor favor, preencha os dados corretamente!";
alert(missinginfo);
return false;
}
}
// Parceiro:
function parceiro() {
missinginfo = "";
if (document.form.x1.value == "") {
missinginfo += "\n     -  Descriminação da parceria.";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Os seguintes dados estão em branco:\n" +
missinginfo + "\n_____________________________" +
"\nPor favor, preencha os dados corretamente!";
alert(missinginfo);
return false;
}
}
// **************************************************
// * Autor : Peter M Jordan - uranking@uranking.com *
// * página: www.uranking.com                       *
// **************************************************

// construindo o calendário:
function popdate(obj,div,tam,ddd)
{
    if (ddd) 
    {
        day = ""
        mmonth = ""
        ano = ""
        c = 1
        char = ""
        for (s=0;s<parseInt(ddd.length);s++)
        {
            char = ddd.substr(s,1)
            if (char == "/") 
            {
                c++; 
                s++; 
                char = ddd.substr(s,1);
            }
            if (c==1) day    += char
            if (c==2) mmonth += char
            if (c==3) ano    += char
        }
        ddd = mmonth + "/" + day + "/" + ano
    }
  
    if(!ddd) {today = new Date()} else {today = new Date(ddd)}
    date_Form = eval (obj)
    if (date_Form.value == "") { date_Form = new Date()} else {date_Form = new Date(date_Form.value)}
  
    ano = today.getFullYear();
    mmonth = today.getMonth ();
    day = today.toString ().substr (8,2)
  
    umonth = new Array ("Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro")
    days_Feb = (!(ano % 4) ? 29 : 28)
    days = new Array (31, days_Feb, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31)

    if ((mmonth < 0) || (mmonth > 11))  alert(mmonth)
    if ((mmonth - 1) == -1) {month_prior = 11; year_prior = ano - 1} else {month_prior = mmonth - 1; year_prior = ano}
    if ((mmonth + 1) == 12) {month_next  = 0;  year_next  = ano + 1} else {month_next  = mmonth + 1; year_next  = ano}
    txt  = "<table bgcolor='#efefff' style='border:solid #FF9900; border-width:2' cellspacing='0' cellpadding='3' border='0' width='"+tam+"' height='"+tam*1.1 +"'>"
    txt += "<tr bgcolor='#FFFFFF'><td colspan='7' align='center'><table border='0' cellpadding='0' width='100%' bgcolor='#FFFFFF'><tr>"
    txt += "<td width=20% align=center><a href=javascript:popdate('"+obj+"','"+div+"','"+tam+"','"+((mmonth+1).toString() +"/01/"+(ano-1).toString())+"') class='Cabecalho_Calendario' title='Ano Anterior'><<</a></td>"
    txt += "<td width=20% align=center><a href=javascript:popdate('"+obj+"','"+div+"','"+tam+"','"+( "01/" + (month_prior+1).toString() + "/" + year_prior.toString())+"') class='Cabecalho_Calendario' title='Mês Anterior'><</a></td>"
    txt += "<td width=20% align=center><a href=javascript:popdate('"+obj+"','"+div+"','"+tam+"','"+( "01/" + (month_next+1).toString()  + "/" + year_next.toString())+"') class='Cabecalho_Calendario' title='Próximo Mês'>></a></td>"
    txt += "<td width=20% align=center><a href=javascript:popdate('"+obj+"','"+div+"','"+tam+"','"+((mmonth+1).toString() +"/01/"+(ano+1).toString())+"') class='Cabecalho_Calendario' title='Próximo Ano'>>></a></td>"
    txt += "<td width=20% align=right><a href=javascript:force_close('"+div+"') class='Cabecalho_Calendario' title='Fechar Calendário'><b>X</b></a></td></tr></table></td></tr>"
    txt += "<tr><td colspan='7' align='right' bgcolor='#FEE3AB' class='mes'><a href=javascript:pop_year('"+obj+"','"+div+"','"+tam+"','" + (mmonth+1) + "') class='mes'>" + ano.toString() + "</a>"
    txt += " <a href=javascript:pop_month('"+obj+"','"+div+"','"+tam+"','" + ano + "') class='mes'>" + umonth[mmonth] + "</a> <div id='popd' style='position:absolute'></div></td></tr>"
    txt += "<tr bgcolor='#F7B437'><td width='14%' class='dia' align=center><b>Dom</b></td><td width='14%' class='dia' align=center><b>Seg</b></td><td width='14%' class='dia' align=center><b>Ter</b></td><td width='14%' class='dia' align=center><b>Qua</b></td><td width='14%' class='dia' align=center><b>Qui</b></td><td width='14%' class='dia' align=center><b>Sex<b></td><td width='14%' class='dia' align=center><b>Sab</b></td></tr>"
    today1 = new Date((mmonth+1).toString() +"/01/"+ano.toString());
    diainicio = today1.getDay () + 1;
    week = d = 1
    start = false;

    for (n=1;n<= 42;n++) 
    {
        if (week == 1)  txt += "<tr bgcolor='#efefff' align=center>"
        if (week==diainicio) {start = true}
        if (d > days[mmonth]) {start=false}
        if (start) 
        {
            dat = new Date((mmonth+1).toString() + "/" + d + "/" + ano.toString())
            day_dat   = dat.toString().substr(0,10)
            day_today  = date_Form.toString().substr(0,10)
            year_dat  = dat.getFullYear ()
            year_today = date_Form.getFullYear ()
            colorcell = ((day_dat == day_today) && (year_dat == year_today) ? " bgcolor='#FFCC00' " : "" )
            txt += "<td"+colorcell+" align=center><a href=javascript:block('"+  d + "/" + (mmonth+1).toString() + "/" + ano.toString() +"','"+ obj +"','" + div +"') class='data'>"+ d.toString() + "</a></td>"
            d ++ 
        } 
        else 
        { 
            txt += "<td class='data' align=center> </td>"
        }
        week ++
        if (week == 8) 
        { 
            week = 1; txt += "</tr>"} 
        }
        txt += "</table>"
        div2 = eval (div)
        div2.innerHTML = txt 
}
  
// função para exibir a janela com os meses
function pop_month(obj, div, tam, ano)
{
  txt  = "<table bgcolor='#CCCCFF' border='0' width=80>"
  for (n = 0; n < 12; n++) { txt += "<tr><td align=center><a href=javascript:popdate('"+obj+"','"+div+"','"+tam+"','"+("01/" + (n+1).toString() + "/" + ano.toString())+"')>" + umonth[n] +"</a></td></tr>" }
  txt += "</table>"
  popd.innerHTML = txt
}

// função para exibir a janela com os anos
function pop_year(obj, div, tam, umonth)
{
  txt  = "<table bgcolor='#CCCCFF' border='0' width=160>"
  l = 1
  for (n=1991; n<2012; n++)
  {  if (l == 1) txt += "<tr>"
     txt += "<td align=center><a href=javascript:popdate('"+obj+"','"+div+"','"+tam+"','"+(umonth.toString () +"/01/" + n) +"')>" + n + "</a></td>"
     l++
     if (l == 4) 
        {txt += "</tr>"; l = 1 } 
  }
  txt += "</tr></table>"
  popd.innerHTML = txt 

}

// função para fechar o calendário
function force_close(div) 
    { div2 = eval (div); div2.innerHTML = ''}
    
// função para fechar o calendário e setar a data no campo de data associado
function block(data, obj, div)
{ 
    force_close (div)
    obj2 = eval(obj)
    obj2.value = data 
}

// Habileta botão:
function HabiDsabi(){
if(document.getElementById('habi1').checked == true){
document.getElementById('file1').disabled = ""
}
if(document.getElementById('habi1').checked == false){
document.getElementById('file1').disabled = "disabled"
}
if(document.getElementById('habi2').checked == true){
document.getElementById('file2').disabled = ""
}
if(document.getElementById('habi2').checked == false){
document.getElementById('file2').disabled = "disabled"
}
if(document.getElementById('habi3').checked == true){
document.getElementById('file3').disabled = ""
}
if(document.getElementById('habi3').checked == false){
document.getElementById('file3').disabled = "disabled"
}
if(document.getElementById('habi4').checked == true){
document.getElementById('file4').disabled = ""
}
if(document.getElementById('habi4').checked == false){
document.getElementById('file4').disabled = "disabled"
}
if(document.getElementById('habi5').checked == true){
document.getElementById('file5').disabled = ""
}
if(document.getElementById('habi5').checked == false){
document.getElementById('file5').disabled = "disabled"
}
}
function Habi(){
if(document.getElementById('habi').checked == true){
document.getElementById('file').disabled = ""
}
if(document.getElementById('habi').checked == false){
document.getElementById('file').disabled = "disabled"
}
}
function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes");
}
function abrir(URL) {

   var width = 600;
   var height = 450;

   var left = 99;
   var top = 99;

   window.open(URL,'MiniSystem', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');

}

function boletim() {
missinginfo = "";
if ((document.form.x2.value == "") ||
	(document.form.x2.value == "digite assim: d/m/aaaa")) {
missinginfo += "\n     -  DATA DE NASCIMENTO.";
}
if (document.form.x1.value == "") {
missinginfo += "\n     - MATRÍCULA. ";
}

if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"Os seguintes dados estão em branco:\n" +
missinginfo + "\n_____________________________" +
"\nPor favor, preencha os dados corretamente!";
alert(missinginfo);
return false;
}
}