function abre(foto, l, a){
janela=window.open("","","width=" + l + " height=" + a)
janela.document.open()
janela.document.write ("<html><body leftmargin=0 topmargin=0><center><img src=" + foto + "></center></body></html>")
}

function abreJanela(url, largura, altura) {
window.open(url,"","scrollbars=yes width=" + largura +" height=" + altura)
}

function click() {
if (event.button==2||event.button==3) {
 oncontextmenu='return false';
  }
}
document.onmousedown=click
document.oncontextmenu = new Function("return false;")

