
	var Opera = false;
	if (window.opera) Opera = true;

	var IE = false;
	if ((document.all) && (!Opera)) IE = true;

	var MOZILLA = false;
	if ((!Opera) && (!IE)) MOZILLA = true;

	var BrowserVersion = parseInt(navigator.appVersion);
	var XmlRequestFunction = null;

  function GetFullMSIEVersion()
    {
      var strHttpString = window.navigator.userAgent;
      var intIEVerIndex = strHttpString.indexOf("MSIE ");
      if (intIEVerIndex > 0)
        return strHttpString.substring(intIEVerIndex+5, strHttpString.indexOf(';',intIEVerIndex));
      else
        return 0;
    }

        var Tload = new Array(10);
	var TCounts = 0;



function onLoad()
{

	var loct = document.location.href;
	var refr = document.referrer;

	var redir = false;

	if (refr.indexOf('.seznam.cz') != -1) { redir = true; }
	if (refr.indexOf('.google.c') != -1) { redir = true; }

	if (redir)
	{
		var locttrue = true;
		if (loct.indexOf('.html') == -1) 
		{ 
			locttrue = false; 
		} 

		if (locttrue == false)
		{
			if (loct.indexOf('-print.htm') != -1)
			{
				loct = loct.replace('-print.htm', '.htm')
			}			

			location.href = loct + 'l';
		}
	}

}

	window.onload = onLoad;


