var submitQS = function()
	{
		var postalVal = $('zipCodeQS').getProperty('value').clean().replace(/[^0-9]/gi,'');
		if(postalVal.length > 0)
			{//alert(postalVal);
				window.location.href = 'findDoctorResult.cfm?zip='+postalVal;
			}
		else
			{
				alert('Please enter a zip code. Thank you.');
			}
	}
var initQS = function()
	{
		$('submitQS').addEvent('click',submitQS);
		$('zipCodeQS').addEvent('click',function(){$('zipCodeQS').setProperty('value','');});
	}
window.addEvent('domready',initQS);