// JavaScript Document
function insertMap(myMap,myHeight,myZoom,iFrameHeight){
  var myHTML = '<IFRAME SRC="/maps/_scriptLibrary/_map.asp?route=' + myMap + '&height=' + myHeight + '&zoom=' + myZoom +'" width=100% height=' + iFrameHeight + ' frameborder=0 scrolling=no style="padding:0px; margin:0px;"></IFRAME>';
	   
document.write(myHTML);
}
function insertAreaMap(myMap,myHeight,myZoom,iFrameHeight){
  var myHTML = '<IFRAME SRC="/maps/_scriptLibrary/_areaMap.asp?route=' + myMap + '&width=954&height=' + myHeight + '&zoom=' + myZoom +'" width=954 height=' + iFrameHeight + ' frameborder=0 scrolling=no style="padding:0px; margin:0px;"></IFRAME>';
	   
document.write(myHTML);
}