// JavaScript Document
<!--
function SwitchMenu(obj){
	if(document.getElementById){
	var el = document.getElementById(obj);
	var ar = document.getElementById("container").getElementsByTagName("div"); 

		if(el.style.display != "block"){ 
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="mainsub") 
				ar[i].style.display = "none";
			}
			el.style.display = "block";
		}else{
			el.style.display = "none";
		}
	}
}
//-->

<!--
function gotosite1(Fm){
var URL = Fm.options[Fm.selectedIndex].value;
window.location.href = URL;
}
var bookmarkurl="http://www.sebnem.org" 
var bookmarktitle="Şebnem [Kadın ve Aile Portalı]" 
function addbookmark(){ 
if (document.all) 
window.external.AddFavorite(bookmarkurl,bookmarktitle) 
} 
//-->

<!--
function Form2_Validator(theForm2)
{

  
  if (theForm2.kullanici.value == "")
  {
    alert("Lütfen kullanici adinizi giriniz !!!");
    theForm2.kullanici.focus();
    return (false);
  }
  
  if (theForm2.sifre.value == "")
  {
    alert("Lütfen sifrenizi giriniz !!!");
    theForm2.sifre.focus();
    return (false);
  }
  

  
}


//-->