function blurIt(obj, str)
{
	if (obj.value == '')
		obj.value = str;
}

function getDirections()
{	
	var street 	= document.getElementById("streetAddress").value;
	var city		= document.getElementById("city").value;
	var zipcode = document.getElementById("zipcode").value;
	
	// change all space characters to +'s for google maps
	reg = /\s+/;
	street = street.replace(reg,'+');
	city = city.replace(reg,'+');
	
	window.open("http://maps.google.com/maps?f=d&saddr="+street+",+"+city+",+"+zipcode+"&daddr=2820+Keenan+Ave,+Dayton,+OH+45414+(A+%26+E+Automotive)&hl=en&geocode=%3BFfhiXwIdYoL7-g&mra=ls&sll=39.806393,-84.180422&sspn=0,359.980688&ie=UTF8&t=h&z=12",'','scrollbars=yes,menubar=no,height=600,width=800,resizable=yes,toolbar=no,location=no,status=no');
}

function rfqPopUp()
{
	window.open("rfq.php","","scrollbars=no,menubar=no,height=550,width=500,top=100,left=100,resizable=no,toolbar=no,location=no,status=no");
}