// fills out the "where did you hear about us" <select> box options from MOSAIC 
function InitializeWhereHearOptions()   {
	var rawData, strA, strB, strC, WHelement;
	
	rawData = document.getElementById("wherehearoptions").innerHTML;
	
	// get rid of line breaks
	strA = rawData.replace(/\r\n/g, "");
	// make <P> tags lowercase to avoid browser differences (IE renders <P>, Firefox renders <p>)
	strA = strA.replace(/<\/P><P>/g, "</p><p>");
	// string to begin after "START" text
	pospos  = strA.indexOf("LISTSTART");
	strB = strA.substring(pospos + 9);
	// string to exclude finishing "END" text
	lenstrB = strB.length;
	strC = strB.substring(0, lenstrB - 11);

	// now create array and populate the <select> box		
	itemsarray = strC.split("</p><p>");
	WHelement = document.contact_us.hear_about;
	for (i=1; i<itemsarray.length-1; i++)   {
		WHelement.options[i] = new Option(itemsarray[i], itemsarray[i]);
		}

}


function changeOpt()
{
if (document.getElementById('optincu').value == 'no')
{

document.getElementById('optincu').value = 'yes';
}
else
{

document.getElementById('optincu').value = 'no';
}

}