
function shwmnt(nr){
     sta = (document.getElementById(nr).style.display == 'block') ? 'none' : 'block';
	document.getElementById(nr).style.display = sta;	
}
function shwmnt2(nr){
    sta = (document.getElementById(nr).style.display == 'none') ? 'block' : 'none';
	document.getElementById(nr).style.display = sta;	
}


function GetTime(){
	cas = new Date();
	sec = CheckFormat(cas.getSeconds());
	min = CheckFormat(cas.getMinutes());
	hod	= CheckFormat(cas.getHours());
	o_cas = hod +':'+ min + ':' + sec
	document.getElementById('st').innerHTML= o_cas;
	setTimeout("GetTime();",1000);
}

function CheckFormat(i){
	if (i<10){
		i= '0'+i;
	}
	return i;
}




function win_open(c,sirka,vyska)
{
	
 sirka_obr=screen.width;
 vyska_obr=screen.height;
 
 	var okno=window.open('','','scrollbars=no, left=' + (sirka_obr-sirka)/2 + ', top=' + (vyska_obr-vyska)/2.5 + ', width=' + sirka + ', height=' + vyska + ', resizable=no');
	okno.document.write('<html><head>');
	okno.document.write('<title>BULLDOSVK</title>');
	//okno.document.write('<script type="text/javascript" src="storage/js/JavaScript.js"></script>');
	okno.document.write('</head>');
	okno.document.write('<body style="margin: 0px; padding: 0px;" onClick="self.close()">');
	okno.document.write('<div>');
	okno.document.write('<img src="'+c+'" title="Kliknutím zatvor/Click to close" style="cursor:pointer;">');
	okno.document.write('</div>');
	okno.document.write('</body>');
	okno.document.write('</html>');
	okno.document.close();	
}


function DelCheck(){
       msg = "Naozaj chcete vymazať nasledujúci objekt ?"
       return confirm(msg);
}
