function setWindow() {
    imgx = document.img.width;
    imgy = document.img.height;
    if(document.img.width > 984)  { imgx = 1024; } else { imgx += 40; }
    if(document.img.height > 723) { imgy = 768; }  else { imgy += 55; }
    window.resizeTo(imgx, imgy)
}

function popup(href) {
window.open(href);	
}

function getE(objectID) {
	return document.getElementById(objectID);
}

function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Kliketjte prosím pouze levým tlačítkem.");
return false;
}
return true;
}


function searchBox(co,cim){
 if(getE('srch').value == co){getE('srch').value = cim;}
}

function searchBox2(co,cim){
 if(getE('srch2').value == co){getE('srch2').value = cim;}
}

function EmailControl(f)
{
	if ((f=='' || f=='Váš@email.cz') ||(f.indexOf('@') < 1 || f.indexOf('@') != f.lastIndexOf('@') || f.lastIndexOf('.') < f.lastIndexOf('@')+2  || f.lastIndexOf('.') > (f.length-3) || f.lastIndexOf('.') < (f.length-4)) || f.indexOf(" ") >= 0  ||  f.indexOf("#") >= 0  || f.indexOf("/") >=0 || f.indexOf(":") >=0 || f.indexOf(";") >=0 || f.indexOf("(") >=0 || f.indexOf(")") >=0 || f.indexOf("[") >=0 || f.indexOf("]") >=0 || f.indexOf("'") >=0)
	{
		alert('Nesprávný formát pole: Email!');
		getE('email').focus();
		return false;
	}
	return true;
}


function validateForm(co)
{
	if (co == 1){
		if (getE('kom_name').value == "") {alert("Není vyplněno jméno!"); getE('kom_name').focus(); return false;}
		if (getE('kom_text').value == "") {alert("Není vyplněn text komentáře!"); getE('kom_text').focus(); return false;}
		if (getE('spam_hammer').value == "") {alert("Není vyplněna antispamová ochrana!"); getE('spam_hammer').focus(); return false;}
	}
	return true;
}



