﻿function CheckSearchFocus() {
	var str;
	if (document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value == "Type in your search here") {
		document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value = "";
		document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").style.color = "#252525";
		str = document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value;
	}
	if (document.getElementById("txtSearch").value == "Type in your search here") {
		document.getElementById("txtSearch").value = "";
		document.getElementById("txtSearch").style.color = "#252525";
		str = document.getElementById("txtSearch").value;
	}
	CheckForSearchString(str);

}

function CheckSearchBlur() {

	var str;
	if (document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value == "Type in your search here")
	 {
		document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").style.color = "#bbbbbb";
		str = document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value;
	}
	if (document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value == "")
	 {
		document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value = "Type in your search here";
		document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").style.color = "#bbbbbb";
		str = document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value;
	}
	if (document.getElementById("txtSearch").value == "Type in your search here") {
		document.getElementById("txtSearch").style.color = "#bbbbbb";
		str = document.getElementById("txtSearch").value;
	}
	if (document.getElementById("txtSearch").value == "") {
		document.getElementById("txtSearch").value = "Type in your search here";
		document.getElementById("txtSearch").style.color = "#bbbbbb";
		str = document.getElementById("txtSearch").value;
	}
	CheckForSearchString(str);

}

//this function will check to see if the user
//has inputed something in the textbox to search on
function CheckForSearchString(str) {

	if (str == "Type in your search here") {
		//disable the search button.
		document.getElementById("ctl00_ctl00_Search_btnSearch").disabled = true;
	}

}

function CheckForKeyValue() {
	try {
		var strSearchBoxValue = document.getElementById("ctl00_ContentPlaceHolder1_txtSearch").value; //get contents of search box
		//if strSearchBoxValue is null or equal to default text
		if (strSearchBoxValue == "Type in your search here" || strSearchBoxValue == " ") {
	
		}
	
		//else enable the text box

	} catch (err) { }
}