function getObj(name)
{
	if (document.getElementById)
	{
		this.obj = document.getElementById(name);
		this.style = document.getElementById(name).style;
		return true;
	}
	else if(document.all)
	{
		this.obj = document.all[name];
		this.style = document.all[name].style;
		return true;
	}
	else return false;
}

function addClass(trida,ajdi){
	var element = document.getElementById(ajdi);
	if(element){
		element.className = element.className + ' ' + trida;
		return true;
	}else{
    return false;
  }
}

function replaceClass(trida,ajdi){
	var element = document.getElementById(ajdi);
	if(element){
		element.className = trida;
		return true;
	}else{
    return false;
  }
}

/*
function reply2(what) {
	var what;	// co budem vkladat
	var text_now = document.addpost.text.value;	// ziskani soucasneho obsahu
	if (text_now == "") {
		document.addpost.text.value=what;
	} else {
		document.addpost.text.value+"\n\n"+what;
	}
}
*/
/*
function switchInfobox(id){
  var box = document.getElementById(id);

  if(!box) return;
  var classes = box.className.split(' ');
  var date = new Date();
  date.setTime(date.getTime()+(30*24*60*60*1000));//ulozi se to na 30 dni
  
  if(classes.length == 2){
      box.className = box.className+' zavr';
      setCookie(id+'View','off',date,'/');
  }else{
      setCookie(id+'View','on',date,'/');
      box.className = classes[0]+' '+classes[1];
  }
}
*/
/*
function initInfobox(id){
  var date = new Date();
  date.setTime(date.getTime()+(30*24*60*60*1000));//ulozi se to na 30 dni
  if(getCookie(id+'View')=='off'){
    switchInfobox(id);
  }else{
    setCookie(id+'View','on',date,'/');//prodlouzime to
  }
}
*/

function w(url,type){
	switch(type){
        case 1:
			var posWidth = 1044;
			var posHeight = 1044;
			wname = 'galerie-full';
		break
        case 2:
			var posWidth = 900;
			var posHeight = 640;
			wname = 'cizi-okno';
		break
        default:
			var posWidth = 690;
			var posHeight = 720;
			wname = 'galerie';
	}
	if(window.screen.availHeight < posHeight){posHeight = window.screen.availHeight;} 
	if(window.screen.availWidth < posWidth){posWidth = window.screen.availWidth;}
	var posLeft = (window.screen.availWidth - posWidth)/2;
	var posTop = (window.screen.availHeight - posHeight)/2;
	var args='scrollbars=yes,location=no,resizable=yes,'; 
	args += 'width=' + posWidth + ',height=' + posHeight + ',left=' + posLeft + ',top=' + posTop;

	var win = window.open(url,wname,args);
	if(win){
		win.focus;
		return false;
	} else return true;
}

/*
function init(){
  //inicializace menu - ale jen, pokud ma smysl
  if(document.getElementById('menu'))
    initMenu();

}
window.onload = init;
*/
