function popupMap(id,label,picsDir){
 var w=window.open('',id+'map','toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width=520,height=530');
 if(label!='')label=' for '+label;
 w.document.open();
 w.document.write('<HTML><HEAD><TITLE>PlanetSoftPages.com :: Map'+label+'</TITLE></HEAD><BODY STYLE="margin:2" BGCOLOR="#FFFFFF"><CENTER>');
 w.document.write('<TABLE WIDTH=500 BORDER=0 CELLSPACING=0 CELLPADDING=1><TR><TD BGCOLOR=black><TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=1>');
 w.document.write('<TR BGCOLOR="#FF7711">');
 w.document.write('<TD ALIGN=CENTER><FONT FACE="Verdana" SIZE=2><B>Map'+label+'</B></FONT></TD>');
 w.document.write('<TD WIDTH="1%"><FONT FACE="Verdana" SIZE=2><A HREF="javascript:window.close();">close</A>&nbsp;<A HREF="javascript:void(null)" onClick="self.print();return false">print</A>&nbsp;</TD>');
 w.document.write('</TR></TABLE></TD></TR></TABLE>');
 w.document.write('<IMG SRC="http://www.planetsoftpages.com/images/'+id+'map.gif" WIDTH=500 HEIGHT=500 BORDER=0 VSPACE=4 HSPACE=4></CENTER></BODY></HTML>');
 w.document.close();
 w.focus()
}
