// Main javascript file for Pennington Fence
function show_address(phone) {
	// The purpose of this function is to allow easy updating of
	// Addresses and Phone Numbers because this is an ongoing task
	document.write("<b>Pennington Fence, Inc.</b><br />1630 Cedars Road<br />Lawrenceville, Ga. 30045");
	if (phone) {
		document.write("<br />");
		show_phone();
		document.write("<br />");
		show_email();
		document.write("<br /><br /><br /><img src='images/logos/bbb.jpg' width='70' border='0'><br /><br /><img src='images/logos/afa.jpg' width='100' border='0'><br />");
	}
}

function show_phone() {
	document.write("770-963-9961");
}

function show_email() {
	document.write("twilliams_pfence@bellsouth.net");
}