﻿// JScript File
function visi()
{
if(document.getElementById("AramaListe1_drp").value=="0")
{
    document.getElementById("AramaListe1_County").style.display="none";
    document.getElementById("AnaTr").style.height="120px";
}
else
{
document.getElementById("AramaListe1_County").style.display="";
document.getElementById("AnaTr").style.height="320px";
}
}
function formControl()
{
var IsCorrect=true;
if(document.getElementById("AramaListe1_drp").value=="0")
{
alert('Şehir seçmelisiniz.');
IsCorrect=false;
}
else
{
var select="";
while(document.getElementById("AramaListe1_ListBox1").selectedIndex>-1)
{
select=select + document.getElementById("AramaListe1_ListBox1").options[document.getElementById("AramaListe1_ListBox1").selectedIndex].value+",";
document.getElementById("AramaListe1_ListBox1").remove(document.getElementById("AramaListe1_ListBox1").selectedIndex);
}
document.getElementById("AramaListe1_hideCounty").value=select;
}
document.getElementById("AramaListe1_hideType").value=document.getElementById("AramaListe1_drpTUR").value;
return IsCorrect;
}

function scrollSticky(elem)
{
var ie=document.all && !window.opera
var dom=document.getElementById

iebody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body

objref=(dom)? document.getElementById(elem) : document.all[elem];
var scroll_top=(ie)? iebody.scrollTop : window.pageYOffset

var docwidth=(ie)? iebody.clientWidth : window.innerWidth
docheight=(ie)? iebody.clientHeight: window.innerHeight
objheight=objref.offsetHeight
pos=scroll_top+10;

if((iebody.scrollHeight-objref.scrollHeight)<pos)
 return
	objref.style.top=(scroll_top+2)+"px"
 
}
