/*----------------------------------------------------------------
 NAZEV: funkce pro projekt Auto Lajza
 DATUM: 22.11.2001
 AUTOR: Michal Bucek              
----------------------------------------------------------------*/
 var WindowName=null;
 function OpenWindow(Path,X,Y)
   {
   if (WindowName!=null && !(WindowName.closed)) {WindowName.close()}
   WindowName=window.open("","obrazek","toolbar=0,location=0,scrollbars=0,width="+X+",height="+Y+",resizable=0,top=0,left=0");
   WindowName.document.open();
   WindowName.document.write('<HTML><HEAD><TITLE>AUTO LAJZA - autobazar</TITLE></HEAD>');
   WindowName.document.write('<BODY TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>');
   WindowName.document.write('<A HREF="JavaScript: self.close();">');
   WindowName.document.write('<IMG SRC="',Path,'" ALT="kliknutím zavřete okno" BORDER=0>');
   WindowName.document.write('</A>');
   WindowName.document.write('</BODY></HTML>');
   WindowName.document.close();
   }
//--------------------------------------------------------- 
 function OnlyNumber()
   {
   with(event)  
   if (keyCode<48 || keyCode>57) returnValue=false;
   }
//--------------------------------------------------------- 
 function ShowYear()
   {
   today=new Date();
   document.write(today.getYear());
   }
//--------------------------------------------------------- 
 function CheckNew(form)
   {
   send=1;  
   if(form.charFirstName.value=='') { send=0; window.alert("zadejte jméno"); }
   if(form.charLastName.value=='') { send=0; window.alert("zadejte přijmení"); }
   if(form.charEmail.value=='') { send=0; window.alert("zadejte email"); }
   if (send==1) form.submit(); 
   }
//--------------------------------------------------------- 
