var agt    = navigator.userAgent.toLowerCase();
var is_ie  = (agt.indexOf('msie') != -1);

var url    = self.location.hostname;
var okno   = '';


// OKNO S FOTKOU
function openPhoto(path, name, width, height)
{
	if (typeof(okno.document) == 'object') okno.close(); 

	okno = window.open('http://'+url+'/fotka.php?path='+path+'&name='+name+'', 'fotka', 'left=50, top=50, width='+width+', height='+height+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no');

	return false;
}


// KONTROLA VYPLNENI UDAJU
function checkLogin(formular)
{
	if (formular.login.value == '') {
		alert('Vaše uživatelské jméno musíte vyplnit!');
		formular.login.focus();
		return false;
	}
	else if (formular.password.value == '') {
		alert('Vaše heslo musíte vyplnit!');
		formular.password.focus();
		return false;
	}
	else return true;
}