function Ver(FOTO)
{ventana=window.open("foto.asp?foto="+FOTO,"window","toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width=10,height=10,left=100,top=55");
  ventana.moveTo(((screen.width/2)-(250)),((screen.height/2)-(250)));
}


function showcalendar()
{ventana=window.open("calendario.asp","window","toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0,resizable=0,width=200,height=200,left=100,top=55");
  ventana.moveTo(((screen.width/2)-(250)),((screen.height/2)-(250)));
}

function Evento(fecha) {
evento=window.open("eventos.asp?f="+fecha,"Eventos","toolbars=0,scrollbars=1,location=0,statusbars=0,menubars=0,resizable=0,width=420,height=210,left=125,top=160");
evento.focus();
}

//ABRIR VENTANA
function Win(URL,ancho,alto) {
if (ancho==null){
	ancho=350;
	alto=200;
}
if (scroll==null){
scroll=0
}
ventana=window.open(URL,"Win","toolbars=0,scrollbars="+scroll+",location=0,statusbars=0,menubars=0,resizable=0,width="+ancho+",height="+alto+",left=185,top=320");
}

//ENLACE QUE CIERRA VENTANA
function get(url) {
  opener.location = url;
  self.close()
}

//CAMBIA COLOR A CELDAS
function mOvr(src,clrOver) {
if (!src.contains(event.fromElement)) {
src.style.cursor = 'hand';
src.bgColor = clrOver;
}
}
function mOut(src,clrIn) {
if (!src.contains(event.toElement)) {
src.style.cursor = 'default';
src.bgColor = clrIn;
}
}
function mClk(src) {
if(event.srcElement.tagName=='TD'){
src.children.tags('A')[0].click();
}
}
