/** Status **/
window.defaultStatus='ESSO BKK | GANZE ENERGIE - GANZ MEINE KASSE';

/** OnFocus **/
blurAnchors = function(){ 
  if(document.getElementsByTagName){ 
    var a = document.getElementsByTagName("a"); 
    for(var i = 0; i < a.length; i++){ 
      a[i].onfocus = function(){this.blur()}; 
    } 
  } 
} 
window.onload = blurAnchors; 

/****/
function checkEmail(myForm)
{
	var result = false;
	var theStr = new String(myForm.from.value);
	var index = theStr.indexOf("@");
	if (index > 0)
	{
	var pindex = theStr.indexOf(".",index);
	if ((pindex > index+1) && (theStr.length > pindex+1))
	result = true;
	}
	if(!result)
		alert("Bitte geben Sie Ihre E-Mail Adresse ein!");
	return result;
}
