
function isEMail(s)
{
	tmp = s;
	s = s.value;
 var a = false;
 var res = false;
 if(typeof(RegExp) == 'function')
 {
  var b = new RegExp('abc');
  if(b.test('abc') == true){a = true;}
  }

 if(a == true)
 {
  reg = new RegExp('^([a-zA-Z0-9\\-\\.\\_]+)'+
                   '(\\@)([a-zA-Z0-9\\-\\.]+)'+
                   '(\\.)([a-zA-Z]{2,4})$');
  res = (reg.test(s));
 }
 else
 {
  res = (s.search('@') >= 1 &&
         s.lastIndexOf('.') > s.search('@') &&
         s.lastIndexOf('.') >= s.length-5)
 }
if(!res){
	alert("Ungültige E-Mail Adresse");
	tmp.focus();
}

 return(res);
}
/* genericOpen */

function genericOpen(name,url,width,height)
{
	var genmesg = open(url,name,"toolbar=0,status=1,menubar=0,resizable=yes,scrollbars=yes,width="+width+",height="+height); 
}

function genericOpenNoScroll(name,url,width,height)
{
	var genmesg = open(url,name,"toolbar=0,status=1,menubar=0,resizable=no,scrollbars=no,width="+width+",height="+height); 
}


function OpenAbo() 
					{
          				newWindow=window.open("http://www.bdverlag.de/cgi-bin/adframe/de/print/abo.html?&MAGAZIN=BLOND","Abo","toolbar=yes,scrollbars=yes,scrolling=yes,directories=no,width=500,height=400,resize=no")
           				if (newWindow !=null && newWindow.opener==null)
                			newWindow.opener=window
                    }

function WinOpenBlond(tomail,toname,tofunktion,subject)
 {
var myurl = "http://www.bdverlag.de";
	myurl+= "/cgi-bin/mail/mail.cgi?template=blond_mail.html&success=blond_success.html&to_email="+tomail+"&to_name="+toname+"&to_funktion="+tofunktion+"&subject="+subject;
msg=open(myurl,"popup","toolbar=0,status=1,menubar=0,resizable=no,scrollbars=yes,width=458,height=482"); 
}