

function aventana(im,ancho,alto){
	features = "width="+ancho+",height="+alto,resizable=0;	
	var ventana=window.open("","",features);
	ventana.document.write("<html><head><title></title></head><body topmargin=0 leftmargin=0 >");
	ventana.document.write("<img src='" +im+ "' width=" +ancho+ " height=" +alto+ " border=0></body><html>");
}
function abrir_ventana(im,ancho,alto){
	features = "width="+ancho+",height="+alto+",resizable=0,scrollbars=1";	
	var ventana=window.open(im,"ventana1",features);
}
function abrir_ventana2(im,ancho,alto){
	features = "width="+ancho+",height="+alto+",resizable=0,scrollbars=2";	
	var ventana=window.open(im,"ventana1",features);
}
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();
}
}

function a_ventana(im,ancho,alto){
	features = "width="+ancho+",height="+alto+",resizable=0,scrollbars=0";	
	var ventana=window.open(im,"ventana",features);
}