// JavaScript Document


function Check(){

if(document.form1.search.value==""){
	
	var date = document.form1.category.value;
	

if (date.match(/00/i)) {
    window.location.href="http://ec.bb-lab.com//product/product.html";
}else if (date.match(/01/i)) {
    window.location.href="http://ec.bb-lab.com/product/placental.html";
}else if (date.match(/02/i)) {
    window.location.href="http://ec.bb-lab.com/product/hyalrone.html";
}else if (date.match(/03/i)) {
    window.location.href="http://ec.bb-lab.com/product/gtp.html";
}else if (date.match(/04/i)) {
    window.location.href="http://ec.bb-lab.com/product/estrax.html";
}else if (date.match(/05/i)) {
    window.location.href="http://ec.bb-lab.com/product/another.html";
}


return false;

}

return true;

}
