
// Function use for Search Box
function emptykeyword()
{
	if(document.RawMaterials.T.value == "Select a search category, then type in the required details")
	{
		document.RawMaterials.T.value="";
	} 
}

function emptykeywordsecond()
{
	if(document.ActiveIngredients.T.value == "Select a search category, then type in the required details")
	{
		document.ActiveIngredients.T.value="";
	} 
}

function emptykeywordthird()
{
	if(document.getElementById("abc").value == "Select a search category, then type in the required details")
	{
		document.getElementById("abc").value="";
	} 
}

function emptykeywordfourth()
{
	if(document.getElementById("abc1").value == "Select a search category, then type in the required details")
	{
		document.getElementById("abc1").value="";
	} 
}

