function valid_email(email)
{
email1=new String(email);

   if ((email1.length!=0 && email1.indexOf("@", email)==-1) || email1.length==0 ) 
    { //alert("Adres email jest nieprawidłowy","aaa");
      return 0;
    } else 
{
return 1;
}

}
function klient_sprawdz()
 {
var error;
error="";

if (!valid_email(document.wd.remail.value)) error+="Adres email jest nieprawidłowy";

if (error=="") {
    document.wd.submit();
  } else 
     {
      alert("Należy uzupełnić poniższe pola:\n"+error,"aaa");

     }

 }

function popUp(plik,w,h) 
{
	Podglad = window.open(plik, 'Podglad', 'toolbars=no, location=no, scrollbars=no, resizable=no, width='+w+', height='+h+', left=0, top=0');
	Podglad.focus();
}
 function show(id){
   document.getElementById(id).style.display="block";
 }

 function hide(id){
   document.getElementById(id).style.display="none";
 }