
		function redirectScript()
		{

			if(document.location.href.indexOf('hhs.gov')==-1)
			{
				var s;

				s = document.location.href.split("/");

				var url;

				url = s[s.length - 1] + '';

				if(url.indexOf('.htm')==-1 && url.indexOf('.asp')==-1)
				{
					url = 'http://drc.hhs.gov/surveyq';
				}
				else
				{
					url = 'http://drc.hhs.gov/surveyq/' + url;
				}

				window.location = url;
			}
		}
