<!--
//--------------------------------
// funcion para crear una ventana con el mapa de contactar grande
//--------------------------------

function VentanaMapa(plano,x,y){
this.plano = plano;
this.x = x;
this.y = y;
//window.open("../mapa.htm","Mapa","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width =570,height=365");
//alert("'','ventanaFlotante','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width='" + x + "',height ='" + y + "'");
ventana = window.open('','ventanaFlotante','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + x + ',height =' + y + "'");
ventana.opener = self;
ventana.document.writeln("<Html>");
ventana.document.writeln("<head>");
ventana.document.writeln("<title>DBM Trade, mapa de situaci&oacute;n</title>"); 
ventana.document.writeln("</head>");
ventana.document.writeln("<Body bgcolor='#FFFFFF' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
ventana.document.writeln("<p><img src=" +'"'+ plano + '"'+ " " + "width=" + "'" + x + "'" + " " + "height="+ "'" + y + "'" + "></p>");
ventana.document.writeln("</Body>");   
ventana.document.writeln("</Html>"); 
ventana.document.close(); 
}
// -->
