
function OpenSearchResult()
{
url = document.getElementById("key").value;
url0 = document.getElementById("typeid").value;
url="product.asp?key="+url &typeid=+url0;
document.location.href = url;
}

function basketform1_onsubmit() 
{
if(checkspace(document.basketform1.pro_size.value!=0)) {
	document.basketform1.pro_size.focus();
    alert("Please choose from the available product options!");
	return false;
  } 		 
}

function checkspace(checkstr) {
  var str = '';
  for(i = 0; i < checkstr.length; i++) {
    str = str + ' ';
  }
  return (str == checkstr);
}
