function getFilename(text, ifLocal){
	var lastB;
	if(ifLocal) lastB=text.lastIndexOf("\\");
	else lastB=text.lastIndexOf("/");

	text=text.substr(lastB+1,text.length);

	switch(text){
		case "":
		case "index.php":
			document.write('<img src="images/main/9.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Guaranty Bank, Tyler" title="Guaranty Bank, Tyler">');
			break;

		case "about.php":
			document.write('<img src="images/main/2.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Trane Cooling Tower" title="Trane Cooling Tower">');
			break;

		case "services.php":
			document.write('<img src="images/main/3.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Erecting Canopy" title="Erecting Canopy">');
			break;

		case "safety.php":
			document.write('<img src="images/main/6.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Trane, Fort Smith Arkansas" title="Trane, Fort Smith, Arkansas">');
			break;

		case "experience.php":
			document.write('<img src="images/main/1.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Broadway Square Mall, Tyler, Tx" title="Broadway Square Mall, Tyler, Tx">');
			break;

		case "relationships.php":
			document.write('<img src="images/main/8.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Posados Caf&eacute; &mdash; Lindale" title="Posados Caf&eacute; &mdash; Lindale">');
			break;

		case "links.php":
			document.write('<img src="images/main/4.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Equipment Pit &amp; Steel Mezzanines" title="Equipment Pit &amp; Steel Mezzanines">');
			break;

		case "contact.php":
		case "thanks.php":
			document.write('<img src="images/main/7.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Pouring Concrete" title="Pouring Concrete" border=0>');
			break;

		default:
			document.write('<img src="images/main/1.jpg" name="main_photo" id="main_photo" width="513" height="282" alt="Broadway Square Mall" title="Broadway Square Mall">');
			break;
	}
}