﻿// JScript File
//<!--

function ProductSearchText(txbID)
{
    txbSearch = document.getElementById(txbID);
	if (txbSearch.value == "Search here...")
	{
		txbSearch.value = "";
	}
}

//-->
