// JavaScript Document
function WindowImg(foto, nome, tit)
{
jan=window.open('',nome, 'width=680, height=480 scrollbars=1 left=2 top=0 resizable=1');
jan.document.clear();
jan.document.write("<head>");
jan.document.write("<title>::"+tit+"::</title>");
jan.document.write("</head>");
jan.document.write("<center>");
jan.document.write("<tr>");
jan.document.write("<td align='center'>");
jan.document.write("<img src='" + foto + "'>"); 
jan.document.write("</td>");
jan.document.write("</tr>");
jan.document.write("<table width='100%'>");
jan.document.write("<tr>");
jan.document.write("<td align='center'");
jan.document.write("<form><input type='button' onClick='window.close()' value='Fechar'><form>");
jan.document.write("</td>");
jan.document.write("</tr>");
jan.document.write("</table>");
jan.document.write("</center>"); 
}


function data() {
data= new Date()
  switch (data.getDay())
  {
    case 0:document.write("Domingo, dia "+data.getDate()+"/"+eval(data.getMonth()+1)+"/"+data.getFullYear())
    break;
    case 1:document.write("Segunda-Feira, dia "+data.getDate()+"/"+eval(data.getMonth()+1)+"/"+data.getFullYear())
    break;
    case 2:document.write("Terça-Feira, dia "+data.getDate()+"/"+eval(data.getMonth()+1)+"/"+data.getFullYear())
    break;
    case 3:document.write("Quarta-Feira, dia "+data.getDate()+"/"+eval(data.getMonth()+1)+"/"+data.getFullYear())
    break;
    case 4:document.write("Quinta-Feira, dia "+data.getDate()+"/"+eval(data.getMonth()+1)+"/"+data.getFullYear())
    break;
    case 5:document.write("Sexta-Feira, dia "+data.getDate()+"/"+eval(data.getMonth()+1)+"/"+data.getFullYear())
    break;
    case 6:document.write("Sábado, dia "+data.getDate()+"/"+eval(data.getMonth()+1)+"/"+data.getFullYear())
    break;
  }
	
}

//---
function popup_promocao(imagem, tit)
{
jan=window.open('','jPromocao', 'width=318, height=318 scrollbars=1 left=2 top=0 resizable=0');
jan.document.clear();
jan.document.write("<head>");
jan.document.write("<title>::"+tit+"::</title>");
jan.document.write("</head>");
jan.document.write("<body leftmargin='0' rightmargin='0' topmargin='0' bottommargin='0'>");
jan.document.write("<center>");
jan.document.write("<a href='promocoes.php' target='_blank'>");
jan.document.write("<img src='" + imagem + "' border='0'>"); 
jan.document.write("</a>");
jan.document.write("</center>");
jan.document.write("</body>");
}