	function SendToGoogleMini(strQuery, strCollection)
	{
		location="http://www.originlab.com/search/?site=my_collection&output=xml_no_dtd&sec=part&restrict=" + strCollection + "&proxystylesheet=my_collection&client=my_collection&as_epq=" + strQuery;
	}
	function SetColor(theControl, theLabel) {
		if (theControl.value == "" || theControl.value.indexOf("Unspecified") > -1) {
			theLabel.style.fontWeight = "bold";
		}
		else
			theLabel.style.fontWeight = "normal";
	}
	function SetColor_DynamicControls(theControlName, theLabelName) {
		if (document.getElementById(theControlName) != null && document.getElementById(theLabelName) != null) {
			//alert(document.getElementById(theControlName).name + " " + document.getElementById(theLabelName).name);
			SetColor(document.getElementById(theControlName), document.getElementById(theLabelName));
		}

	}
