  function kontrolfirma(form)
{
var sertifikano=form.sertifikano.value;
var firmaadi=form.firmaadi.value;
 
var hata='';

if (sertifikano=='') 
{
document.getElementById('mtn1').style.backgroundColor='yellow';
return false
}
if (firmaadi=='')
 {document.getElementById('mtn2').style.backgroundColor='yellow';
return false}

 
}

  function en_kontrolfirma(form)
{
var sertifikano=form.sertifikano.value;
var firmaadi=form.firmaadi.value;
 
var hata='';

if ((sertifikano=='')&&(firmaadi==''))
{
//document.getElementById('mtn1').style.backgroundColor='yellow';
return false
}
if ((sertifikano!='')&&(firmaadi=='only the first 3 letters'))
 {//document.getElementById('mtn2').style.backgroundColor='yellow';
return false}

 
 

if ((sertifikano=='')&&(firmaadi=='only the first 3 letters'))
 {//document.getElementById('mtn2').style.backgroundColor='yellow';
return false}

 }
 

function brenk(br)
{
if (document.getElementById(br).value!='')
{
document.getElementById(br).style.backgroundColor='white';

}
}

function adres_goster(ad_g)
{
document.getElementById(ad_g).style.display='block';
}
function adres_gizle(ad_g)
{
document.getElementById(ad_g).style.display='none';
}


