// JavaScript Document

// HTML document must insert the following lines to call this .js file
//<script language="JavaScript" type="text/JavaScript">
//<!--
//var dept = 'dept=credit&'; 
////-->
//</script> 
//<script type="text/javascript" src="division_location2.js"></script>


function land(ref, target)
{ lowtarget=target.toLowerCase();
if (lowtarget=="_self") {window.location=loc;}
else {if (lowtarget=="_top") {top.location=loc;}
else {if (lowtarget=="_blank") {window.open(loc);}
else {if (lowtarget=="_parent") {parent.location=loc;}
else {parent.frames[target].location=loc;};
}}}
}
function jump(menu)
{ ref=menu.choice.options[menu.choice.selectedIndex].value; splitc=ref.lastIndexOf("&");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc); target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}




html_code =

'<form>\n'
+ '<SELECT NAME="choice" onChange="jump(this.form)">\n'
+ '<OPTION>Select a Location\n'
+ '<OPTION VALUE="columbia.html&_self">Columbia, MD - Corporate \n'
+ '<OPTION VALUE="cheverly.html&_self">Cheverly, MD \n'
+ '<OPTION VALUE="baltimore.html&_self">Baltimore, MD \n'
+ '<OPTION VALUE="frederick.html&_self">Frederick, MD \n'
+ '<OPTION VALUE="hagerstown.html&_self">Hagerstown, MD \n'
+ '<OPTION VALUE="westminster.html&_self">Westminster, MD \n'
+ '<OPTION VALUE="edgewater.html&_self">Edgewater, MD \n'
+ '<OPTION VALUE="easton.html&_self">Easton, MD \n'
+ '<OPTION VALUE="hagerstown.html&_self">Charlestown, WV \n'
+ '<OPTION VALUE="hagerstown.html&_self">Martinsburg, WV \n'
+ '<OPTION VALUE="berryville.html&_self">Berryville, VA \n'
+ '<OPTION VALUE="manassas.html&_self">Manassas, VA \n'
+ '<OPTION VALUE="dover.html&_self">Dover, DE \n'
+ '</SELECT>\n'
+ '</form>\n';




// end_var_declaration
document.write(html_code);
