function showmap(form) { 
	var North309 = 'directions/images/from309northmap.gif';
	var South309 = 'directions/images/from309southmap.gif';
	
	var baltimore =
		'<p>Travel 95 NORTH into Pennsylvania.</p>'
		+'<p>About 5 miles into Pennsylvania, look for 476 NORTH.</p>'
		+'<p>Take 476 NORTH to 276 (The Pennsylvania Turnpike).</p>'
		+'<p>Travel 276 EAST about 6 miles to EXIT 339 (formerly exit 26).</p>'
		+'<p>Take Route 309 NORTH.</p>'
		+'<p>Travel approximately 12 miles.</p>'
		+'<p>Look for the Peruzzi Toyota dealership on the right.</p>'
		+'<p>Look for the SELLERSVILLE - OLD BETHLEHEM PIKE EXIT which will be about 100 ft. past the dealership.</p>'
		+'<p>Take this exit.</p>'
		+'<p>We are the second driveway on the left.</p>';
		
	var newark = 
		'<p>Travel 78 WEST into Pennsylvania.</p>'
		+'<p>Take EXIT 60A (formerly Exit 20A) - 309 SOUTH.</p>'
		+'<p>Travel 309 SOUTH for about 20 miles.</p>'
		+'<p>Look for, but do not take!! the ROUTE 113, SOUDERTON EXIT. We are about 2 miles past this exit.</p>'
		+'<p>Descend the hill, and get into the left lane.</p>'
		+'<p>At the bottom of the hill, you will see our lot on the left.</p>'
		+'<p>Get into the LEFT TURN LANE.</p>'
		+'<p>Make a LEFT across 309 onto the small pass-way.</p>'
		+'<p>From this pass-way Merge Left, and stay in the left lane.</p>'
		+'<p>We are the second driveway on the left.</p>';

	var pittsburgh =
		'<p>Travel 276 EAST (The Pennsylvania Turnpike).</p>'
		+'<p>Take EXIT 339 (formerly Exit 26).</p>'
		+'<p>Take Route 309 NORTH.</p>'
		+'<p>Travel approximately 12 miles.</p>'
		+'<p>Look for the Peruzzi Toyota dealership on the right.</p>'
		+'<p>Look for the SELLERSVILLE - OLD BETHLEHEM PIKE EXIT which will be about 100 ft. past the dealership.</p>'
		+'<p>Take this exit.</p>'
		+'<p>We are the second driveway on the left.</p>';
	
	var wilmington = 
		'<p>Travel 95 NORTH into Pennsylvania.</p>'
		+'<p>About 5 miles into Pennsylvania, look for 476 NORTH.</p>'
		+'<p>Take 476 NORTH to 276 (The Pennsylvania Turnpike).</p>'
		+'<p>Travel 276 EAST about 6 miles to EXIT 339 (formerly exit 26).</p>'
		+'<p>Take Route 309 NORTH.</p>'
		+'<p>Travel approximately 12 miles.</p>'
		+'<p>Look for the Peruzzi Toyota dealership on the right.</p>'
		+'<p>Look for the SELLERSVILLE - OLD BETHLEHEM PIKE EXIT which will be about 100 ft. past the dealership.</p>'
		+'<p>Take this exit.</p>'
		+'<p>We are the second driveway on the left.</p>';
	
	var myindex=form.dirdropdown.selectedIndex
	var map=(form.dirdropdown.options[myindex].value);
	if (map == "nothing"){
	document.getElementById('contenthere').innerHTML = "";
	}
	else{
	switch (map){
		case "baltimore":
			var header = 'Directions to Opdyke Inc. from Baltimore, MD';
			var pdf = 'directions/pdf/baltimore.pdf';
			var map1 = 'directions/images/baltimore_map.gif';
			var map2 = South309;
			var txt = baltimore;
		break;
		case "newark":
			var header = 'Directions to Opdyke Inc. from Newark, NJ';
			var pdf = 'directions/pdf/newark.pdf';
			var map1 = 'directions/images/newark_map.gif';
			var map2 = North309;
			var txt = newark;
		break;
		case "pittsburgh":
			var header = 'Directions to Opdyke Inc. from Pittsburgh, PA';
			var pdf = 'directions/pdf/pittsburgh.pdf';
			var map1 = 'directions/images/pittsburgh_map.gif';
			var map2 = South309;
			var txt = pittsburgh;
		break;
		case "wilmington":
			var header = 'Directions to Opdyke Inc. from Wilmington, DE';
			var pdf = 'directions/pdf/wilmington.pdf';
			var map1 = 'directions/images/wilmington_map.gif';
			var map2 = South309;
			var txt = wilmington;
		break;
	}
document.getElementById('contenthere').innerHTML = 

'<table width="800" bgcolor="#ffffcc" border="1" bordercolor="#000000" cellpadding="0" cellspacing="10">'
	+'<tr><td class="dirhead" height="40" bgcolor="#cccc99" colspan="2">'+header+'</td></tr>'
	+'<tr><td class="dirlink" height="40" colspan="2" bgcolor="#ffffff"><a href="'+pdf+'" target="_blank"><img src="images/pointer.gif" width="20" height="20" alt="" border="0" hspace="4" align="absmiddle">Click here</a> to open these directions as a PDF file in a new window. [This file can be saved, printed, emailed, etc...]</td></tr>'
	+'<tr>'
		+'<td bgcolor="#ffffff" width="450" height="450"><img src="'+map1+'" width="450" height="450" alt="" border="1"></td>'
		+'<td class="dir" bgcolor="#ffffff" width="350" rowspan="2">'+txt+'</td>'
	+'</tr>'
	+'<tr><td bgcolor="#ffffff" width="450" height="450"><img src="'+map2+'" width="450" height="450" alt="" border="1"></td></tr>'
+'</table>';
}
}