<!-- Javascript functions for Bay Street Salon and Spa -->

<!--This launches the Business hours window --> 
function LaunchHours () {
	var HoursWin = window.open("businesshours.html", "HoursWin", "resizable=no,width=400,height=400");
	HoursWin.focus();
}

<!--This launches the Driving directions window --> 
function LaunchMap () {
	var MapWin = window.open("map_drivingdirections.html", "MapWin", "resizable=yes,scrollbars=yes,width=500,height=600");
	MapWin.focus();
}
