// SORRY, THIS PAGE CANNOT BE FRAMED
if (parent.frames.length > 0)
  {
  parent.location.href = location.href;
  }

// JAVASCRIPT POPUP WINDOW
function openWindow(theURL,winName,features) 
  {
  window.open(theURL,winName,features);
  }
// CLEAR TEXT BOX FIELD
function clearfielddID(){
	if (document.pickup.dID.value == " Type your drink number")
		document.pickup.dID.value = "";
	}
function clearFieldEmail(){
	if (document.login.email.value == " Type your e-mail here")
		document.login.email.value = "";
	}
// PLACE CURSOR IN TEXT BOX
function fe()
  {
  document.login.email.focus();
  }
// PRINT DRINK SPECIALS
function printSpecial(x)
	{
	window.open('/local_drink_specials/accountPrint.asp?aID='+x, 'PrintRecipe' ,'width=610,height=500,scrollbars=yes,left=40,top=40');
	}