function confirmLiveSite() {
 var conf=confirm("CAUTION: The link you have clicked on is LIVE.  This means any activity of yours on the site could result in real-world consequences (if you place an order it WILL go through). If you choose to continue, click OK and please be respectful.");
 if (conf== true)
 {
   return true;
 }
 else
 {
  return false;
  }
}

function showContact() {
	document.getElementById('contactbox').className='contact';
	document.getElementById('leftarrow').className='invisible';
	document.getElementById('rightarrow').className='block';

	return false;
}

function hideContact() {
	document.getElementById('contactbox').className='contact_hidden';
	document.getElementById('rightarrow').className='invisible';
	document.getElementById('leftarrow').className='block';

	return false;
}
