<!--

function checkSubmit(text) {
  if (confirm(text)) return true;
  else return false;
}

function showImg(img,width,height) {
  if (width==0 || height==0) return false;
  win = "image.php?path="+img;
  pars = "left=0,top=0,width="+width+",height="+height;
  window.open(win,"img",pars);
  return false;
}

function filterOff(obj) {
  obj.style.border = '1px solid red';
  //obj.filters.alpha.opacity=100;
  //obj.filters.gray.enabled=false;
}

function filterOn(obj) {
  obj.style.border = '1px solid black';
  //obj.filters.alpha.opacity=95;
  //obj.filters.gray.enabled=true;
}

function CheckEmptyMail(mail_id)
{
	var mail=document.getElementById(mail_id);
	if (mail.value != "") return true; // ok - adresa je zadána
	var ok= confirm("Nevyplnili jste svoji e-mailovou adresu což znemožní zasílat Vám\nprůběžné informace o stavu a odbavování Vaší objednávky.\nPřejete si pokračovat bez vyplněné e-mailové adresy?");
	if (!ok) mail.focus();
	return ok;
}

function SetD1D2(D1,D2)
{
	var fld_D1 = document.getElementById("fld_D1");
	if (fld_D1 != null) fld_D1.value = D1;
	var fld_D2 = document.getElementById("fld_D2");
	if (fld_D2 != null) fld_D2.value = D2;
}

function GEcalcOpen()
{
	var objWnd = window.open("show/text/empty.html",
				"gecalc",
				"scrollbars=no,height=400,width=600");
	objWnd.focus();
}

-->
