// <!--

//window popup - GALERIE s Titulkem, Podtitulkem a autorem
var pole;
function galerie(pole) {

var vyska = parseInt(pole[1])+100;
var sirka = pole[0];
var titlebody = "height="+vyska+",width="+sirka+",resizable=1,scrollbars=auto";
var imgInfo = "<div class='popupImgInfo'><strong>"+pole[2]+"</strong><br /><span>"+pole[4]+"</span><br /><span class='date'>"+pole[8]+",</span>&nbsp;Autor:&nbsp;<a href='"+pole[7]+"' title='"+pole[5]+"&nbsp;"+pole[6]+"'>"+pole[5]+pole[6]+"</a></div>"; 

newwindow=window.open('','name',titlebody);
newwindow.document.write('<html><head><title>Galerie</title><link rel="stylesheet" href="/default/default/kostra.css" type="text/css" media="all"/><link rel="stylesheet" href="/default/default/styly.css" type="text/css" media="all"/><link rel="stylesheet" href="/zelenavlna/default/barvy.css" type="text/css" media="all"/></head><body style="background-color:#E6E7E6" leftMargin="0" topMargin="0" MARGINHEIGHT="0 " MARGINWIDTH="0">');
newwindow.document.write('<div align="center">');
//newwindow.document.write(imgInfo);
newwindow.document.write('<img title="po kliknutí se popup okno zavře"  onclick="window.close()"  border="0" src="http://www.rozhlas.cz/_obrazek/');
newwindow.document.write(pole[3]);
newwindow.document.write('" />');
newwindow.document.write(imgInfo);
newwindow.document.write('</div>');
newwindow.document.write('</body></html>');
newwindow.document.close();
}

function kontrola(obsah, znaky){
  if (!znaky) znaky = 500;
  if (obsah.value.length > znaky) {
    //orez
    obsah.value = obsah.value.substr(0,znaky);
    //return false;
  }
  //return true;
}


function zalamovani(formular){
  var krok = 40;
  var textret = formular.f_text.value;
  var celdel = textret.length;
  var cast = "";
  var vysledek = "";
  var zmeneno = "F";
  for (i=0; i<celdel+1; i=i+krok){
    cast = textret.substr(i,krok);
    if (cast.indexOf(' ', 0) == -1){
      cast = cast + " ";
      zmeneno = "T";
    }
    vysledek = vysledek + cast;
  }
  formular.f_text.value = vysledek;
  //if (zmeneno == "T") alert(vysledek);
}
			
// -->

// Kontrola emailove adresy
// <!--
function zkontroluj_email(adresa)
	{
	re = /^[^.]+(\.[^.]+)*@([^.]+[.])+[a-z]{2,3}$/;
	return adresa.search(re) == 0;
	}
											
function zkontroluj_formular()
{
if (!zkontroluj_email(self.document.forms.f.f_user_email.value))
{
alert("Nesprávně vyplněná emailová adresa!");
return false;
}
return true;  
}
// -->
