// (c) Omer Tokus
// Menu basla
function MM_jumpMenuGo(objId,targ,restore){ //v9.0
  var selObj = null;  with (document) { 
  if (getElementById) selObj = getElementById(objId);
  if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0; }
}
// Menu bit
function ChangeFocus(ElementId) { ElementId.style.backgroundColor = '#f4f4f4'; ElementId.style.borderColor = '#369EDA'; }
function ChangeBlur(ElementId) { ElementId.style.backgroundColor = '#ffffff'; ElementId.style.borderColor = ''; }
// Form css bit
function CheckContactForm()
{
	var Ad=document.Contact_Form.Ad.value;
	var Adid=document.Contact_Form.Ad.id;
	var Tel=document.Contact_Form.Tel.value;
	var Telid=document.Contact_Form.Tel.id;
	var anum=/(^\d+$)|(^\d+\.\d+$)/
	var Email=document.Contact_Form.Email.value;
	var Emailid=document.Contact_Form.Email.id;
	var Konu=document.Contact_Form.Konu.value;
	var Konuid=document.Contact_Form.Konu.id;
	var Mesaj=document.Contact_Form.Mesaj.value;
	var Mesajid=document.Contact_Form.Mesaj.id;
	
	if(Ad=="" || Ad==" " ){
		alert(Adid);
		document.Contact_Form.Ad.focus();
		return false;
	}
	if(Email==""  || Email==" "){
		alert(Emailid);
		document.Contact_Form.Email.focus();
		return false;
	}	
	if(Email.indexOf('@')<=0||Email.indexOf('.')<=0){
		alert(Emailid);
		document.Contact_Form.Email.focus();
		return false;
	}
	
	
	if (anum.test(Tel))
		testresult=true
	else{
		alert(Telid);
		document.Contact_Form.Tel.focus();
		testresult=false
		return (testresult)
		}
	
	if(Konu==""){
		alert(Konuid);
		document.Contact_Form.Konu.focus();
		return false;
	}
	if(Mesaj==""){
		alert(Mesajid);
		document.Contact_Form.Mesaj.focus();
		return false;
	}	
	return true;
}
// Form kontrol bit
// Ajax
function islemYap(){
    var Ad  = document.getElementById('Ad').value;
	var Email  = document.getElementById('Email').value;
    var Tel = document.getElementById('Tel').value;
	var Konu = document.getElementById('Konu').value;
	var Mesaj = document.getElementById('Mesaj').value;
    
    var sc = "Ad=" + fc_(Ad) + "&Email=" + fc_(Email) + "&Tel=" + fc_(Tel) + "&Konu=" + fc_(Konu) + "&Mesaj=" + fc_(Mesaj);
    JXP(1, "form_sonuc", "send.asp", sc);
	document.getElementById('form_sonuc').style.visibility = 'visible';
	//document.getElementById('mymesaj').style.backgroundColor = '#CC3300';
	//document.getElementById('mymesaj').style.color = '#ffffff';
}
//Form focus
function ContactFormFoc()
{
	document.Contact_Form.Ad.focus();
}
//favori
var bookmarkurl="http://www.sislisualti.com"
var bookmarktitle="Şişli Sualtı Sporları"

function addbookmark(){
  if (document.all)
     window.external.AddFavorite(bookmarkurl,bookmarktitle)
}
//Facebook
function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}