function GetResourceString(lKey, sDefaultValue){
	return sDefaultValue;
}
function Added() {
	alert('Your item has been added to your shopping cart');
}

function repositionFooter()
{
	var leftHeight 	  = document.getElementById('leftNavigation').offsetHeight;
	var contentHeight = document.getElementById('content').offsetHeight;

	var biggestHeight = leftHeight;

	if(leftHeight > contentHeight)
	{
		biggestHeight = leftHeight;
	}
	if(contentHeight > leftHeight)
	{
		biggestHeight = contentHeight;
	}

	document.getElementById('footer').style.top = (biggestHeight + 200) + 'px';
	document.getElementById('footer').style.display = 'block';
}

function ValidateSearch()
{
	if (document.fmSearch.Keywords.value.length > 0)
	{
		document.fmSearch.Action.value = "search";
		return(true);
	}
	else
	{
		alert("Please enter a search term");
		return(false);
	}
}

function Search()
{
	if (ValidateSearch()) document.fmSearch.submit();
}

function AdvancedSearch()
{
	document.fmSearch.Action.value = "";
	document.fmSearch.submit();
}