function mail()
{
var nyi='mai';
var hcm='lto:';
var plk='nakladatelstvi%40';
var plkVel='velkoobchod%40';
var plkObj='objednavky%40';
var plkZav='@';
var uug='ekopress'+'.'+'cz';
var rgw='?subject=Zprava%20z%20WEBU';
var tpg= 'EKOPRESS';
if (document.getElementById("mailNakl"))
{
document.getElementById("mailNakl").href = (nyi+hcm+plk+uug+rgw);
document.getElementById("mailNakl").innerHTML = 'nakladatelstvi'+plkZav+uug;
}
if (document.getElementById("mailCopy"))
{
document.getElementById("mailCopy").href = (nyi+hcm+plk+uug+rgw);
document.getElementById("mailCopy").innerHTML = "© EKOPRESS";
}
if (document.getElementById("mailVel"))
{
document.getElementById("mailVel").href = (nyi+hcm+plkVel+uug+rgw);
document.getElementById("mailVel").innerHTML = 'velkoobchod'+plkZav+uug;
}
if (document.getElementById("mailObj"))
{
document.getElementById("mailObj").href = (nyi+hcm+plkObj+uug+rgw);
document.getElementById("mailObj").innerHTML = 'objednavky'+plkZav+uug;
}}

function mailEkopress()
{
var nyi='href=mai';
var hcm='lto:';
var plk='nakladatelstvi%40';
var uug='ekopress'+'.'+'cz';
var rgw='?subject=Zprava%20z%20WEBU';
return (nyi+hcm+plk+uug+rgw);
}

function na()
{
if (window.event.srcElement.tagName == "A") window.event.srcElement.style.color = "#800040"; 
}
function mim()
{
if (window.event.srcElement.tagName == "A") window.event.srcElement.style.color = "gray"; 
}
function prip()
{
if (window.event.srcElement.tagName == "A") window.event.srcElement.style.color = "red"; 
}

function knihkupectvi()
{
var objKontr=window.open('prodzizkov.html','new','location=no,titlebar=yes,height=562,width=716,scrollbars=no,resizable=no');
objKontr.window.focus();
}


function otevri2(stranka)
{
var objKontr=window.open(stranka,'_blank','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no,height=562,width=716');
objKontr.window.focus();
}


function titdetail(tid)	
{
var dettitulu
dettitulu = window.open('titdetail.php?tid=' + tid, tid, 'toolbar=no, location=yes, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, height=562, width=680');
dettitulu.window.focus();
}

function kostitdetail(tid)	
{
var dettitulu
dettitulu = window.open('../titdetail.php?tid=' + tid, tid + 'kos', 'toolbar=no, location=yes, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, height=562, width=670');
dettitulu.window.focus();
}

function kos(tid)	
{
var kos
kos = window.open('objednat/obch_vybrat.php?tid=' + tid, 'kosik', 'toolbar=no, location=yes, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, height=562, width=680');
kos.window.focus();
}

function kontrObj()	
{
var dettitulu
dettitulu = window.open('objednatkontr.php', 'kontrobj', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no,height=562,width=680');
dettitulu.window.focus();
}

function kontrObjVel()	
{
var dettitulu
dettitulu = window.open('velobjednatkontr.php', 'kontrobjvel', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no,height=562,width=680');
dettitulu.window.focus();
}

function porohoneM()
{
var objKontr=window.open('../anot/porohoneM.html','new','titlebar=yes,height=360,width=400,scrollbars=no,resizable=no');
objKontr.window.focus();
}
function runClock() 
{
today = new Date();
day = today.getDate();
month = today.getMonth();
year = today.getYear();
hours = today.getHours();
minutes = today.getMinutes();
seconds = today.getSeconds();
timeValue = day +". ";
timeValue += month+1 + ". ";
timeValue += year +" ";
timeValue += hours;
timeValue += ((minutes < 10) ? ":0" : ":") + minutes;
timeValue += ((seconds < 10) ? ":0" : ":") + seconds;
document.all.subject.innerText = "Objednávka z webu  "+timeValue;
window.setTimeout("runClock() ",1000) ;
}

function omeztext()
{
var retez=document.data.x_poznamka.value
if(retez.length>200)
{alert("Poznámka může mít maximálně 200 znaků");
document.data.x_poznamka.value=retez.substring(0,199);
return;
}
}

function omezpozn()
{
var retez=document.data.poznamka.value
if(retez.length>250)
{alert("Poznámka může mít maximálně 250 znaků");
document.data.poznamka.value=retez.substring(0,249);
return;
}
}

function getkey(e)
{ 
  var code; 
  if (!e)
    var e = window.event; // nastaveni pro IE 
  if (e.keyCode)
    code = e.keyCode; // ie and mozilla/gecko 
  else
   if (e.which)
     code = e.which; // nn4
  return code; 
} 

function numeric(eX)
{
 test=getkey(eX);
  if (test<48 || test>57)
  if ((test!=8)&&(test!=37)&&(test!=39)&&(test!=46)) 
	{alert("Vkládaný znak není číslice."); 
	return false;}
}