function checkdonationform(){

  var p=0;
  var ok= true;
  var ch= "";
  var str=document.donationform.amount.value
  var len= str.length;

if (str==""){
	document.donationform.amount.focus();
	alert("Please enter an amount in euros that you wish to donate. Please enter your donation in numeric value only, please do not enter the euro symbol or any text.")
	return false;
}

  while (ok && p<len)
  {
    ch= str.charAt(p);
    if ('0'<=ch && ch<='9'){
      	p++;
	}
    else if (ch=="."){
	p++
	}
    else{
	document.donationform.amount.focus();
	alert("Please enter your donation in numeric value only, please do not enter the euro symbol or any text.")
      	ok= false;
	return false;
	}
  }


}


function addBookmark() 
{
if (window.sidebar)
{ 
window.sidebar.addPanel(document.title,location.href,""); 
} 
else if( document.all )
{
window.external.AddFavorite(location.href,document.title);
} 
else if( window.opera && window.print )
{
return true;
}
}


function EmailPage()
{
strEmailBody = "mailto:?body=You have been sent a link from " + document.title + "%0D%0D" + location.href
location.href = strEmailBody
}
