function ShowMap(FileName,size,title){     
     winOpt="toolbar=0,location=0,"+size;
     myWindow=window.open("","myWindow",winOpt);
     myWindow.document.open();
     myWindow.document.writeln("<HTML><TITLE> '"+title+"' </TITLE>");  
     myWindow.document.writeln("<BODY BGCOLOR=#FFFFFF TEXT=#000000 LINK=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
     myWindow.document.writeln("<CENTER><P>");
     myWindow.document.writeln("<IMG SRC='"+FileName+"'  BORDER=0>");
     myWindow.document.writeln("</P></CENTER>");
     myWindow.document.writeln("</BODY>");
     myWindow.document.writeln("</HTML>");
}
