/*===========*/
function Abrir_ventana (pagina, ancho, alto, posy, posx) {
var opciones="toolbar=no, location=no, directories=no, margin=0,status=no, menubar=no, scrollbars=no, resizable=yes, width="+ancho+", height="+alto+", top="+posy+", left="+posx+"";
newWindow=window.open(pagina,"",opciones);
newWindow.focus();
}
//ventanaexacta ala imagen
function DisplayImage(picURL,picWidth,picHeight,picTitle,ventana,posy,posx){
newWindow=window.open(picURL,ventana,'toolbar=no, location=no, directories=no, margin=0,status=no, menubar=no, scrollbars=no,width='+picWidth+',height='+picHeight+',top='+posy+',left='+posx);
newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>');
newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight);
newWindow.focus();
}
//===click drecho
var message="DERECHOS RESERVADOS 2008 - ANTENA SUR ENTERTAINMENT";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
//=====
