function select_index(select)
{
	document.getElementById('div_cart_button').style.visibility='visible';
	document.getElementById('product_id').value =select;
	
}

function Redirect()
{
	window.location.href="http://www.autopilotriches.com/app/netcart.asp?MerchantID=80071&ProductID="+document.getElementById('product_id').value;

}
function validname_email()
{
if(!document.joinform.name1 || document.joinform.name1.value=="")
{alert("Please enter your name");return false;}
if(ValidateEmail(document.joinform.email1)==false) 
{return false;}
}

function searchClickedSimple(form)
{
    if (form.s.value=='')
    {
        alert("Please enter a term to search for.");
        return false;
    }
    return true;
}

