<!--  to hide script contents from old browsers
<!--

var Purchase = [["- lütfen seçim yapın -",""],
  ["Kredi kartı hatası","Creditcard"],
  ["Diğer ürüne yükselt","Upgrade"],
  ["Hangi ürün benim için ben iyi?","Quote"],
  ["Lisans e-postasını alamadım","Badmail"],
  ["Lisans sayısı artışı isteği","Enlarge"],
  ["Çift siparişi iptal et","Cancelorder"],
  ["Diğer Satınalma/Yenileme sorunu","Otherpurchase"],
  ["E-posta adresimi yanlış girdim","Badmail"],
  ["Teklif istiyorum","Quote"],


  ];

var Activate = [["- lütfen seçim yapın -",""],
  ["Seri numaram aktive oldu ancak lisans e-postası alamadım ","Actpcmail"],
  ["Seri numarası geçerli değil","SNnotvalid"],
  ["Diğer Aktivasyon/Kayıt sorun","Otheractivate"]];


var Update = [["- lütfen seçim yapın -",""],
  ["Kullanıcı adı/Parola çalışmıyor","BadUP"],
  ["Diğer güncelleme sorunu","Otherupdate"],
  ["Kullanıcı adı ve parolamı bilmiyorum","UnknownUP"],
  ["Güncelleme hatası","UPDfails"],
  ["Kullanıcı adı/Parola süresi doldu","UPexpired"]];

var Firewall = [["- lütfen seçim yapın -",""],
  ["Ağ kaynaklarını göremiyorum","Network"],
  ["Diğer uygulamalar bağlanamıyor","Connect"],
  ["Kurallar düzgün çalışmıyor","Rules"],
  ["Diğer Firewall sorunu","Otherfirewall"]];


var Antispam = [["- lütfen seçim yapın -",""],
  ["Spam tespit edemiyor","Asnotdetected"],
  ["Araç çubuğu düzgün çalışmıyor","Astoolbar"],
  ["Geçerli mailler spam olarak işaretleniyor","Asfp"],
  ["Antispam ile ilgili diğer sorun","Otherantispam"]];

var Threat = [["- lütfen seçim yapın -",""],
  ["Tehdit(Virüs) tespit edilemedi","Undetected"],
  ["Tehdidi (Virüsü) silemiyor/temizleyemiyor","Uncleanable"],
  ["Modüller başlatılamıyor veya hatalı","Modulesfailure"],
  ["Güncelleme Hataları","UPDerror"],
  ["Diğer Tehdit(Virüs) veya Hata Mesaj sorunu","OtherThreat"],
  ["Geçersiz tehdit(virüs) uyarısı","Falsepositive"]];

var Progissue = [["- lütfen seçim yapın -",""],
  ["Grafik arabirimde sorun var","GUI"],
  ["Güncelleme hesap bilgisi","Updaccount"],
  ["Diğer ürün ve hizmet sorunu","Otherprog"]];

var Feedback = [["- lütfen seçim yapın -",""],
  ["ESET Güvenlik Ürünleri","ESS"],
  ["Diğer görüşler","Otherfeedback"],
  ["Kullanıcı Desteği","Techsupport"],
  ["Web sitesi","Web"],
  ["Yeni program özelliği isteği","Wish"]];


var Download = [["- lütfen seçim yapın -",""],
  ["Program ayarlarına erişemiyorum","Settingsproblem"],
  ["Download hatası","Downloadfailed"],
  ["Kurulum takıldı veya tamamlanamadı","Installhangs"],
  ["Kullanıcı adı ve parolayı kabul etmiyor","UPnotaccepted"],
  ["Kurulum hatası","Installfails"],
  ["Diğer Download/Kurulum sorun","Otherdownload"]];


var RA = [["- lütfen seçim yapın -",""],
  ["Kurulum","RAinstall"],
  ["Kurulum paketleri ve konfigürasyonları","RAconfig"],
  ["Mirror kurulumu","RAmirror"],
  ["Yeni sürüme yükselt","RAupgrade"],
  ["Diğer ESET Remote Administrator sorun","OtherRA"]];





function change_isue(isue_x)
{
  with (document.info)
  {
    if (isue_x=="") {
     while (case_isue.options.length>0)
      case_isue.options[(case_isue.options.length-1)]=null;
      case_isue.disabled=true;
    }
    else
    {
    isue=eval(isue_x);
    while (isue.length<case_isue.options.length)
      case_isue.options[(case_isue.options.length-1)]=null;
      case_isue.disabled=false;
    for (i=0; i<isue.length; i++)
     {
       case_isue.options[i]=new Option(isue[i][0],isue[i][1]);
      }
    }
  }
}


function form_checking(theForm)
{
var submit;
submit=true;
if (submit && theForm.user_name.value=="")
{
alert("Please fill your user name.\n\nNote:\nThis is the username which is used to receive\nvirus signature updates for the product. You can find it\nin your registration e-mail sent to you after purchasing\nyour license or alternatively you can find it directly\nin the product.\nIf you have a trial version or have a pre-sales question,\nenter 'Trial' or 'Pre-Sales' respectively in this space.");
theForm.user_name.focus();
submit=false;
}
if (submit && theForm.first_name.value=="")
{
alert("Please fill your first name.");
theForm.first_name.focus();
submit=false;
}
if (submit && theForm.last_name.value=="")
{
alert("Please fill your last name.");
theForm.last_name.focus();
submit=false;
}
if (submit && theForm.contact_email.value=="")
{
alert("Please fill your e-mail address.\n\nNote:\nThis is the e-mail address where you will \nreceive the response to your request.");
theForm.contact_email.focus();
submit=false;
}

if (submit && theForm.contact_email.value!="")
	{
	var ra=theForm.contact_email.value
  var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
  if (!filter.test(ra)) {
    alert("Please enter a valid Email Address!\n\nNote:\nThis is the e-mail address where you will \nreceive the response to your request.")
    theForm.contact_email.focus();
    submit=false;
  }
}

if (submit && theForm.confirm_email.value!=theForm.contact_email.value)
{
alert("Please confirm your e-mail address.\n\nNote:\nPlease confirm the e-mail address you typed \nin the 'Contact e-mail' field in this form.");
theForm.confirm_email.focus();
submit=false;
}

if (submit && theForm.country.value=="")
{
alert("Please lütfen seçim yapın of the locations below to continue");
theForm.country.focus();
submit=false;
}

if (submit && theForm.case_type.value=="")
{
alert("Please lütfen seçim yapın option from the list of case types.\n\nNote:\nPlease select value which you find most related \nto your request. Choosing the correct value\n will enable ESET Customer Care representatives \nto response you more quickly.");
theForm.case_type.focus();
submit=false;
}

if (submit && theForm.case_isue.value=="")
{
alert("Please lütfen seçim yapın option from the list of case issues.\n\nNote:\nPlease select the value which you find \nmost related to your request. Choosing the correct value\n will enable ESET Customer Care representatives\n to response you more quickly.");
theForm.case_isue.focus();
submit=false;
}

if (submit && theForm.comment.value=="")
{
alert("Please fill question or issue description text field.\n\nNote:\nGeneral description of your request in few words.");
theForm.comment.focus();
submit=false;
}
return submit;
}
function init()
{
	var theButton = document.getElementById('submit_button');
	var theIncr = document.getElementById('incr');

	theButton.value = 'Submit (' + theIncr.innerHTML + ')';

	if (theIncr.innerHTML == 0)
	{
		theButton.disabled = false;
		theButton.value = 'Submit';
	}

	theIncr.innerHTML--;
	if (theIncr.innerHTML >= 0)
	{
		setTimeout("init()", 1000);
	}
}
//-->
