//function pge()
//{
//window.location=((document.URL).replace('_tr','_en'));
//}
//
//function syf()
//{
//window.location=((document.URL).replace('_en','_tr'));
//}
//<!--
// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

function write_it(status_text)
{
window.status=status_text;
}

//-->
//use:<A HREF="http://www.site.com" onMouseover="write_it('English');return true;" onMouseout="write_it('');return true;">English</A>
function pge() {
	// sayfa adini al
	var sayfa = window.location=(document.URL);
	// ad yok
	if (sayfa == "http://www.sada.com.tr/") {
		window.location=((document.URL)+"index_en.html");
	}
	else {
		// turkce ana sayfadamiyiz
		if (sayfa.indexOf("index.html") > -1) {
			// turkce anasayfa da isek ingilizceye gec
			window.location=((document.URL).replace('index','index_en'));
		}
		else {
			// ingilizce anasayfadamiyiz
			if (sayfa.indexOf("index_en.html") > -1) {
				// turkce anasayfaya gec
				window.location=((document.URL).replace('index_en','index'));
			}
			// degilse
			else {
				//turkce bir sayfadamiyiz
				if (sayfa.indexOf("_tr") > -1) {
					// sayfanin ingilizcesine gec
					window.location=((document.URL).replace('_tr','_en'));
				}
				// degilse
				else {
					// sayfanin turkcesine gec
					window.location=((document.URL).replace('_en','_tr'));
				}
			}
		}
	}
}