function linksExternal()
{
 if(document.getElementsByTagName)
 {
  var anchors = document.getElementsByTagName("a");
  for (var i=0; i<anchors.length; i++)
  {
   var anchor = anchors[i];
   if (anchor.getAttribute("rel") == "external")
   {
    anchor.target = "_blank";
   }
  }
 }
}

function ukazObrazek(obrazek,w,h)
{
 w = open(obrazek, "_blank", "scrollbars,resizable,width="+(w+40)+",height="+(h+50));
}

function odesliFormular(id)
{
 if(document.getElementById)
 {
  obj = document.getElementById(id);
  if(obj)
  {
   if(obj.submit)
   {
    obj.submit();
   }
  }
 }
}

function nastavViditelnost(id, viditelnost)
{
 if(document.getElementById)
 {
  obj = document.getElementById(id);
  if(obj)
  {
   obj.style.visibility = (viditelnost)?('visible'):('hidden');
  }
 }
}

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this script and the associated (x)html
is available at http://www.stunicholls.com/various/more.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This script and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */


clickMenu = function(menu,element,cname) {
	var getEls;
  getEls = document.getElementById(menu);
  if (getEls == null) return;
  getEls = getEls.getElementsByTagName(element);

	for (var i=0; i<getEls.length; i++) {
			getEls[i].onclick=function() {
			if ((this.className.indexOf(cname))!=-1)
			{
			if ((this.className.indexOf('click'))!=-1) {
				this.className=this.className.replace("click", "");;
				}
				else {
				this.className+=" click";
				}
			}
		}
	}
}


function start()
{
 jutta__ukazLinku();
 linksExternal();
 nastavViditelnost('vyrobciSubmit', 0);
 clickMenu('outer','div','more');
}

