function SearchClicked()
{
	//if(document.Form1.SearchTextTB.value.length == 0 && 
	//document.Form1.CategorySearchDD.selectedIndex == 0)
	//{
	//	alert("Please select a category or enter a search keyword");
	//	return false;
	//}
}

function CheckPrice(TextBoxId)
{
	var q = document.getElementById(TextBoxId).value;
	
	if(q.length == 0)
	{
		return false;
	}
	
	if(!q.match(/^\d{0,6}(\.\d{1,2})?$/))
	{
		alert("You must enter a valid price. (e.g. 5.99 or 10)");
		document.getElementById(TextBoxId).value = "";
		return false;
	}
	return true;
}

function CheckAvail(sku)
{
	var tempX = 100;
    var tempY = 100;
	if(window.event)
	{
		tempX = window.event.clientX + document.body.scrollLeft;
		tempY = window.event.clientY + document.body.scrollTop;
    }
    //alert(tempX);
    
	popupWin = window.open('checkAvail.aspx?sku=' + sku, 'open_window', 
	'width=250, height=100, left=' + tempY + ', top=' + tempX);
}
