function intlOrderAlert()
{
	var name=confirm("If you are placing an order from outside the US, you may not use this button.  Please select cancel, and use the specialized form at the bottom of the page.");
	if (name==true)
		{
		//alert("true");
		return true;
		}
	else if (name==false)
		{
		//alert("false");
		return false;
		}
}

function intlOrderAlert2()
{
	input_box=confirm("Click OK or Cancel to Continue");
	if (input_box==true)
	{ 
		// Output when OK is clicked
		alert ("You clicked OK"); 
	}
	else
		{
		// Output when Cancel is clicked
	alert ("You clicked cancel");
	}
}

function intlOrderAlert1(){
	Alert("If you are ordering from outside the US, you may not use this button");
}
