function popup_window(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=800,height=650,scrollbars=yes,resizable=yes');
return false;
}

function checkTerms()
{
	if (document.formBuy.terms.checked==false)
	{
		alert('You must agree to the Terms and Conditions');
		return false;
	}
	else
	{
		return true;
	}
}
