function CheckEmail(S) {
  var LastChar = S.length - 1;
  var CharPos = S.indexOf("@");
  if ((CharPos < 1) || (CharPos == LastChar)) return false;
  var CharPos = S.indexOf(".");
  if (CharPos < 1) return false;
  var CharPos = S.lastIndexOf(".");
  if (CharPos == LastChar) return false;

  return true;
}
function CheckEmailField(F) {
  if (!CheckEmail(F.value)){
    alert ("patně zadaná e-mailová adresa! / Invalid e-mail format");
    F.focus();
    F.select();
    return false;
  }
  else
    return true;
}
function setframe (){//setframe('frameName1','URL1','frameName2','URL2')
      for (i=0; i<arguments.length; i+=2){
        if (i+1<arguments.length){
          eval ('parent.'+arguments[i]+
            '.location = "'+
            arguments[i+1]+'";');
        }
      }
    }
function page_load(id,parentName){
	eval ('parent.'+parentName+'.document.getElementById("'+id+'").style.visibility="visible"');
}
function val_cislo(cislo){
			if(cislo.value * 1 >= 0)
				return true
			else {
				alert("Vlote pouze číslo bez mezer a jiných znaků / Insert number only.")
				cislo.select()
				return false
			}
		}
function winup(url,winname,w,h,feat){
	if (!(isNaN(w) || isNaN(h))){
		var x=parseInt((screen.width-w)/2);
		var y=parseInt((screen.height-h)/2);
		if (x<0)	x=0;
		if (y<0)	y=0;
		
		if (feat!=null && feat!="")	{
			feat=","+feat;
		}else{
			feat="";
		}
		feat="left="+x+",top="+y+",width="+w+",height="+h+feat;
	}
	window.open(url,winname,feat);
}
function select_menu(i){
	document.getElementById(i).style.backgroundColor='#FCF8EC';
	document.getElementById(i).style.color='darkred';
	document.getElementById(i).style.fontWeight='bold';
}
function cas(){
	nazvy_dni=new Array("neděle","pondělí","úterý","středa","čtvrtek","pátek","sobota");
	nazvy_mesicu=new Array("leden","únor","březen","duben","květen","červer","červenec","srpen","září","říjen","listopad","prosinec");
	dnes=new Date();
	with(dnes)
	{
		den=getDate();
		rok=getFullYear();
		hodina=getHours();
		minuta=getMinutes();
		if (minuta<10)
			minuta="0"+minuta;
		sekunda=getSeconds();
		if (sekunda<10)
			sekunda="0"+sekunda;
		nazev_dne=nazvy_dni[getDay()];
		nazev_mesice=nazvy_mesicu[getMonth()];
	}
	document.getElementById('js_datum').innerText=nazev_dne+", "+den+". "+nazev_mesice+" "+rok;
	//document.getElementById('js_cas').innerText=hodina+":"+minuta+":"+sekunda;
	window.setTimeout("cas()",1000);
}
function skryj(id){
	var a = document.getElementById(id).style.display;
	if(document.getElementById(id).style.display=='block'){
		document.getElementById(id).style.display='none';
		document.getElementById(id+'_img').src='img/iko/iko_plus.gif';
	}else{
		document.getElementById(id).style.display='block';
		document.getElementById(id+'_img').src='img/iko/iko_minus.gif';
	}
}

