function getRoute(a, c, s, z) {
	myWindow = window.open("", "tinyWindow", "scrollbars,resizable,menubar,toolbar,width=600,height=800");
	myWindow.document.write("<head><script src='http://web.openapi.mapquest.com/oapi/transaction?request=script&amp;key=mjtd%7Clu6y2luyn9%2C20%3Do5-0012h' type='text/javascript'></script></head>");
	myWindow.document.write("<body>");
	myWindow.document.write("<div id='myMap' class='myMap' style='WIDTH:550px;HEIGHT:550px'></div>");
	myWindow.document.write("<script>mqRoute = new MQRoute('myMap');");
	myWindow.document.write("var thumbSize = new MQSize();");
	myWindow.document.write("thumbSize.setHeight(150);");
	myWindow.document.write("thumbSize.setWidth(300);");
	myWindow.document.write("var overviewSize = new MQSize();");
	myWindow.document.write("overviewSize.setHeight(400);");
	myWindow.document.write("overviewSize.setWidth(600);");
	myWindow.document.write("mqRoute.primaryMapSize = overviewSize;");
	myWindow.document.write("mqRoute.origin.setAddress('1450 East Boot Road, Suite 200A');");
	myWindow.document.write("mqRoute.origin.setCity('West Chester');");
	myWindow.document.write("mqRoute.origin.setStateProvince('PA');");
	myWindow.document.write("mqRoute.origin.setPostalCode('19380');");
	myWindow.document.write("mqRoute.origin.setName('Main Line Family Medicine');");
	myWindow.document.write("mqRoute.origin.setIconId('9191');");
	myWindow.document.write("mqRoute.destination.setAddress(" + a + ");");
	myWindow.document.write("mqRoute.destination.setCity(" + c + ");");
	myWindow.document.write("mqRoute.destination.setStateProvince(" + s + ");");
	myWindow.document.write("mqRoute.destination.setPostalCode(" + z + ");");
	myWindow.document.write("mqRoute.destination.setName('dest');");
	myWindow.document.write("mqRoute.doRoute('routeReturn');</script>");
	myWindow.document.write("</body>");
}
function getRoute2(a, c, s, z) {
	myWindow = window.open("GetDirection.htm?a=" + a + "&c=" + c + "&s=" + s + "&z=" +z, "Route", "scrollbars,resizable,menubar,toolbar,width=630,height=800");
}
function getRoute3(a) {
	myWindow = window.open("GetDirections.htm?addr=" + a, "Route", "scrollbars,resizable,menubar,toolbar,width=880,height=660");
}
function getRoute4(a) {
	myWindow = window.open("GetDirections2.htm?addr=" + a, "Route", "scrollbars,resizable,menubar,toolbar,width=880,height=660");
}
