		function xremove()
		{
		var tbox=document.xdizayn.AllProduct
		for(var i=0; i<tbox.options.length; i++) 
		{
			if(tbox.options[i].selected) 
			{
			tbox.options[i].value = "";
			tbox.options[i].text = "";	
			}
		}
		PullUp(tbox)	
		}
		
		function fnSecilenPoz(deger,textdeger) 
		{
			var tbox=document.xdizayn.AllProduct
			if (tbox.options.length>49)
			{
				alert("En Fazla 50 Ders Seçebilirsiniz!...")
				return;
			}
			aynisiVar=false;
			for(var j=0; j<tbox.options.length; j++)  
				if (tbox.options[j].value == deger)
					aynisiVar = true
			if (!aynisiVar)
			{
				var no = new Option();
				no.value = deger;
				no.text = unescape(textdeger);
				tbox.options[tbox.options.length] = no;
				document.getElementById("ilgDersSayi").innerHTML=tbox.options.length
			}
		
			if (tbox.options.length>50)
			{
				alert("En Fazla 50 Ders Seçebilirsiniz!...")
				return;
			}	
		}
	
		function PullUp(box)  
		{
			for(var i=0; i<box.options.length; i++) 
			{
				if(box.options[i].value == "")  
				{
					for(var j=i; j<box.options.length-1; j++)  
					{
					box.options[j].value = box.options[j+1].value;
					box.options[j].text = box.options[j+1].text;
					}
					var ln = i;
					break;
			   }
			}
			if(ln < box.options.length)  
			{
			box.options.length -= 1;
			PullUp(box);
			}
			document.getElementById("ilgDersSayi").innerHTML=box.options.length
		}
		
		
			function listbox_selectall(listID, isSelect) {

			var listbox = document.getElementById(listID);
			for(var count=0; count < listbox.options.length; count++) {

				listbox.options[count].selected = isSelect;

			}
		}
		
		
		
			function listbox_temizle(listID, isSelect) {
	       
			var listbox = document.getElementById(listID);
			for(var count=0; count < listbox.options.length; count++) {

		
			listbox.options[count].value = "";
			listbox.options[count].text = "";	
			
			
		
			
			

			}
			PullUp(listbox)
			
			document.getElementById("ilgDersSayi").innerHTML=0;	
			document.getElementById("Firma").value="";
			document.getElementById("AdSoyad").value="";
			document.getElementById("Telefon").value="";
			document.getElementById("E-Mail").value="";
			document.getElementById("Sehir").value="";
			document.getElementById("Haberdar").value="";
			document.getElementById("aciklama").value="";
			document.getElementById(listID).value="";
		
	
			
		}
		
