//	
//	IntraEmlak CMS V.2.3	(CONTENT MANAGEMENT SYSTEMS) 
//	
//	
//	This program has been prepared for content managment of IntraEmlak sites on PHP and MySQL.
//	Please contact for your questions by the e-mail address.
//	
//	Bu program IntraEmlak sitelerinin içerik yönetimi için PHP ve MySQL tabanlı olarak hazırlanmıştır.
//	Sorularınız için e-posta ile iletişim kurunuz.
//	
//	Last-Date	: 01.01.2006
//	Author		: leventuysal.com
//	
//	mail-to		: leventuysal@gmail.com
//	Copyright (c) 2004 Levent UYSAL.
//  

  
	function goLink(URL){
		if (URL.options[URL.selectedIndex].value !='') {
			location.href = URL.options[URL.selectedIndex].value;
			return true;
		}
		return false;
	}

	function goProductLink(URL){
		if (URL.options[URL.selectedIndex].value !='') {
			location.href = URL.options[URL.selectedIndex].value;
			return true;
		}
		return false;
	}


  function kelime_arabul(){
	  var URL = document.form_arabul;
	  var arabul_kelime = URL.arabul_kelime.value;
	  var arabul_turu=null;
	  var nereye=null;
	  var arabul_turu=URL.arabul_turu;

	  for(var i=0;i<arabul_turu.length;i++)
		if(arabul_turu[i].checked)
		  nereye=arabul_turu[i].value;

	  if (arabul_kelime != '' && arabul_kelime != 'bu kelimeyi ara..') {
		  if (nereye == '1') location.href = './?module=arabul&kelime='+arabul_kelime;	  
		  else location.href = 'http://www.google.com.tr/search?hl=tr&q='+arabul_kelime;	
	  }
  }

  function urun_ara(){
	  URL = document.form_urunler;
	  urun_kelime = URL.urun_kelime.value;
	  if (urun_kelime ==  'bu kelimeyi ara..') urun_kelime = '';
	  urun_catid = URL.catid.options[URL.catid.selectedIndex].value;
	  yol = '';	
	  if (urun_kelime != '') yol += '&kelime='+urun_kelime;
	  if (urun_catid != '') yol += '&catid='+urun_catid;
	  if (yol == '') yol = '&catid=tumu';
	  location.href = './?module=urunler'+yol;	  	
  }