function openMap()
{
    var f 
        = "toolbar=0,"
        + "location=0,"
        + "directories=0,"
        + "status=0,"
        + "menubar=0,"
        + "scrollbars=0,"
        + "resizable=1,"
        + "height=525,"
        + "width=650";        
    var w  = window.open(null, "mapWin", f);
    var d = w.document;
    
    d.open("text/html");
    d.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">');
    d.writeln('<html>');
    d.writeln('  <head>');
    d.writeln('  <title>Quadrants, Inc</title>');
    d.writeln('  </head>');
    d.writeln('  <body>');
    d.writeln('  <iframe width="634" height="509" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Quadrants,+49132+Wixom+Tech+Dr.+Wixom,+MI+48393&amp;aq=&amp;sll=42.511541,-83.534887&amp;sspn=0.010803,0.009334&amp;vpsrc=6&amp;gl=us&amp;g=49132+Wixom+Tech+Dr,+Wixom,+MI+48393&amp;ie=UTF8&amp;hq=Quadrants,&amp;hnear=49132+Wixom+Tech+Dr,+Wixom,+Michigan+48393&amp;t=m&amp;cid=5675856701363295936&amp;ll=42.522028,-83.531284&amp;spn=0.032515,0.05476&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe>');
    d.writeln('  </body>');
    d.writeln('</html>');
    d.close();
}

   

