 
 // tdis section reformats tde date display
function makeDirections()
{
address1= new String (" ");
address= new String (" ");
city1= new String (" ");
city= new String (" ");
state1= new String (" ");
state= new String (" ");
zip1= new String (" ");
zip= new String (" ");
address1= document.map[0].value;
address= escape(address1);
city1= document.map[1].value;
city= escape(city1);
zip1= document.map[3].value;
zip= escape(zip1);
state1= document.map[2].value;
state= escape(state1);
 newWindow= window.open()
 newWindow.location="http://www.mapquest.com/directions/main.adp?go=1&do=nw&ct=NA&1y=US&1a=" + address + "&1p=&1c=" + city + "&1s=" + state + "&1z=" + zip + "&2y=US&2a=38-31+Crescent+Street&2p=&2c=Long+Island+City&2s=ny&2z=11101&lr=2&x=51&y=20";
 newWindow.focus()

 
 }
    
 
 
