// centrovanie
function center_t(h){
	t=(screen.height-h)/2;
	return t;
}
function center_l(w){
	l=(screen.width-w)/2;
	return l;
}

// confirm link
function confirmLink(theLink, theTitle, theAppendix){
    var is_confirmed = confirm(theTitle);
    if (is_confirmed) {
        theLink.href += theAppendix;
    }
    return is_confirmed;
}

//check_forum
function check_forum(){
	if(document.diskusia.meno.value.length<1){
		alert("Prosím, zadajte Vaše meno!");
	}else{
		if(document.diskusia.nadpis.value.length<1){
			alert("Prosím, zadajte nadpis príspevku!");
		}else{
			if(document.diskusia.text.value.length<1){
				alert("Prosím, zadajte text príspevku!");
			}else{
				document.diskusia.submit();
			}
		}
	}
}