function MuestraMenu()
	{
		return false;
		alert('Esta Imagen no se puede copiar');
	}
	
function AbrirVentanaImagen(imagen,nomventana,ancho,alto)
    {
		ancho_trans=200;
		alto_trans=27;
		operadores = "toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=0,width="+ancho+",height="+alto+",title="+nomventana;
		ventana = window.open("",nomventana,operadores) ; 
		ventana.focus();
		ventana.document.write("<HEAD><TITLE>Galeria Fotofráfica</TITLE></HEAD>");
		ventana.document.write("<body leftmargin=0 topmargin=0 onContextMenu=\"return false\">");
		ventana.document.write("<table cellspacing=\"0\" cellpadding=\"0\">");
			ventana.document.write("<tr>");
				ventana.document.write("<td background=\""+imagen+"\">");
					ventana.document.write("<table cellspacing=\"0\" cellpadding=\"0\">");
						ventana.document.write("<tr height=\""+(alto_trans)+"\">");
							ventana.document.write("<td><IMG ID=\"idimagen\" SRC=\"../../imagenes/trans.gif\" width=\""+((ancho-ancho_trans)/2)+"\" height=\""+alto_trans+"\"></td>");
							ventana.document.write("<td><IMG ID=\"idimagen\" SRC=\"../../imagenes/trans_dirweb.gif\" width=\""+ancho_trans+"\" height=\""+alto_trans+"\"></td>");
							ventana.document.write("<td><IMG ID=\"idimagen\" SRC=\"../../imagenes/trans.gif\" width=\""+((ancho-ancho_trans)/2)+"\" height=\""+alto_trans+"\"></td>");
						ventana.document.write("</tr>");
						ventana.document.write("<tr height=\""+(alto-alto_trans)+"\">");
							ventana.document.write("<td colspan=3><IMG ID=\"idimagen\" SRC=\"../../imagenes/trans.gif\" width=\""+ancho+"\" height=\""+(alto-alto_trans)+"\"></td>");
						ventana.document.write("</tr>");
					ventana.document.write("</table>");
				ventana.document.write("</td>");
			ventana.document.write("</tr>");
		ventana.document.write("</table>");
	}