function posel(narod, jmeno, domena)
	{
	var securitycode = new Array(109, 97, 105, 108, 116, 111, 58);
	var gfx = '';
	if ((narod!='') && (jmeno!='') && (domena!=''))
		{
		for(i=0;i<securitycode.length;i++) gfx+=String.fromCharCode(securitycode[i]);
		gfx+=(jmeno+String.fromCharCode(64)+domena+String.fromCharCode(46)+narod);
		document.location=gfx;
		}
	}
	
function init(narod, jmeno, domena, text, titul)
{
	if ((narod!='') && (jmeno!='') && (domena!='') && (text!=''))
		{
		if (typeof(titul)=="undefined") titul=""; else titul='title:'+titul;
		document.write("<a href=\"javascript:posel('"+narod+"', '"+jmeno+"', '"+domena+"')\""+(titul.length>0?" ":"")+titul+">"+text+"</a>");
		}
}

var myTWin = window.myTWin;

function OpenMyWin(link,winName)
{
  var retValue=true;
   if (document.all && !window.opera)
	{ //IE specific
	winName='';
	}
  if (myTWin!=null && !myTWin.closed)
  {
    myTWin.focus();
    myTWin.location.href=link.href;
  }
  else
  {
    myTWin=window.open(link.href,winName, 'menu=1,navigate=1,width=800,height=600,left=20,top=20,resizable=yes');
    if (myTWin==null || typeof(myTWin)=="undefined")
      retValue=false;
    else
    {
      link.target=winName;
      myTWin.focus();
    }
  }
  return retValue;
}
