function setMenu(id) {
	document.getElementById('s1').style.display = "none";
	document.getElementById('s2').style.display = "none";
	document.getElementById('s3').style.display = "none";
	document.getElementById('s'+id).style.display = "block";
}

function napsali() {
	if (document.getElementById('napsali').style.display == 'block')
	{
		document.getElementById('napsali').style.display = 'none';
	}
	else document.getElementById('napsali').style.display = 'block';
}

function checkReditel() {
	if (document.getElementById('jmeno').value=="")
	{
		alert('Vyplňte prosím vaše jméno.');
		return false;
	}
	if (document.getElementById('email').value=="")
	{
		alert('Vyplňte prosím váš email.');
		return false;
	}
	if (document.getElementById('dotaz').value=="")
	{
		alert('Vyplňte prosím dotaz.');
		return false;
	}
	return true;
}

function checkNewsletter() {

}

function searchText() {
	if (document.getElementById('search-input').value == ' hledat na vivantis.cz')
	{
		document.getElementById('search-input').value = '';
	}
}

function openYear(year) {
	if (document.getElementById('tiskovka'+year).style.display == "block")
	{
		document.getElementById('tiskovka'+year).style.display = "none";
	}
	else document.getElementById('tiskovka'+year).style.display = "block";
}

function openDiv(div) {
	if (document.getElementById(div).style.display == "block")
	{
		document.getElementById(div).style.display = "none";
	}
	else document.getElementById(div).style.display = "block";
}

function kontrola_mailu($mail) {
	re = new RegExp("^(([a-zA-Z0-9_\.\-]+@([a-zA-Z0-9_\-]+[\.]{1})+[a-zA-Z]{2,4}|\"[^\"]{0,64}\"<[a-zA-Z0-9_\.\-]+@([a-zA-Z0-9_\-]+[\.]{1})+[a-zA-Z]{2,4}>|\"[^\"]{0,64}<[a-zA-Z0-9_\.\-]+@([a-zA-Z0-9_\-]+[\.]{1})+[a-zA-Z]{2,4}>\")[, ]*)*$");
	if((!re.test($mail))|$mail==""){
		return false;
	}else{
		return true;
	}
}

function kontrola_souteze(){
	$hlaska="Vyplňte prosím správně následující údaje:\n";
	$povol="ANO";

	odpovedi_vyplneny=1;
	elm=document.forms.soutez.elements;
	for(i=0;i<elm.length;i++){
		if(elm[i].name.substring(0,7)=='odpoved'){
			odpoved_vyplnena=0;
			if (elm[i].type == 'radio') {
				for(x = 0; x < document.forms.soutez.elements[elm[i].name].length; x++){
					if(document.forms.soutez.elements[elm[i].name][x].checked){
						odpoved_vyplnena=1;
						//alert('vyplneno');
					}
				}
			}
			if (elm[i].type == 'text' && document.forms.soutez.elements[elm[i].name].value != '') {
				odpoved_vyplnena=1;
			}
			if(odpoved_vyplnena==0){
				odpovedi_vyplneny=0;
			}
		}
	}
	if(odpovedi_vyplneny==0){
		$povol="NE";
		$hlaska=$hlaska+"Odpovědi na všechny otázky\n";
	}
	if(document.forms.soutez.jmeno.value==''){
		$povol="NE";
		$hlaska=$hlaska+"Jméno\n";   
	}
	if(document.forms.soutez.prijmeni.value==''){
		$povol="NE";
		$hlaska=$hlaska+"Příjmení\n";   
	}
	if(!kontrola_mailu(document.forms.soutez.email.value)){
		$povol="NE";
		$hlaska=$hlaska+"E-mail\n";   
	}
	if(document.forms.soutez.cptch.value==''){
		$povol="NE";
		$hlaska=$hlaska+"Kontrolní číslo\n";   
	}
	if($povol=="NE"){
		alert($hlaska);
		return false;
	}else{
		return true;
	}
}

$(function() {
	var host = window.location.host.toLowerCase();
	$('a[href^="http://"]').not('a[href^="http://'+host+'"], a[rel="vidbox"], a[href*="youtube.com"],a[href*="youtube.cz"], a[class*="lightbox"]').addClass('newWindow');
	$('a.newWindow').click(function() {
		window.open(this.href);
		return false;
	});
})
