﻿function quickHyperLink()
{
	document.getElementById("quickHyperLinkRow").style.display = "block";
	document.getElementById("quick").style.display = "none";
	document.getElementById("inputquicksearch").style.display = "block";
}
function quickHyperLinkRedirection()
{	
	
	if( isNaN(document.quickHyperLinkForm.linkName.value) != '' )
	{
		document.quickHyperLinkForm.action = document.quickHyperLinkForm.linkName.value;
		document.quickHyperLinkForm.submit();
		return false;
	}
	else
	{
		return false;
	}
return false;
}

function sbioSearch()
{
	if( document.SearchForm.SEARCH.value == '' )
	{
		alert("Please Enter the Search value");
		document.SearchForm.SEARCH.focus();
		return false;
	}
	else
	{
		 document.SearchForm.submit();
	}
return false;
}


