// JavaScript Document


function GetDirections(){
//	var myLink = "http://maps.google.com/maps?hl=en&q=broderick+law+firm+sexual+harassment&ie=UTF8&hq=broderick+law+firm+sexual+harassment&hnear=&ll=37.426513,-122.144001&spn=0.007719,0.013797&z=16&iwloc=A";
	var myLink2 = "mapdirections.html";
	
	//To open Google Directions page in same window/tab  
//		window.document.location = myLink;
	
	//To open Google Directions page in new window/tab
		//window.open(myLink);
	
	//To open Custom Directions page of your own website (Broderick Law Firm) in same window/tab
		window.document.location = myLink2;
	
	//To open Custom Directions page of your own website (Broderick Law Firm) in new window/tab
		//window.open(myLink2);

}


