// JavaScript Document

window.onload = doScript;

function doScript()
{
	if(!document.getElementById)
	{
		return;
	}
	if(!document.getElementById('change'))
	{
		return;
	}
	
	document.getElementById('change').onclick = function()
	{
		changeLang();
	}
}

function changeLang()
{
	var value = document.getElementById('lan').selectedIndex;
	
	if(value == 0)
	{
		window.location='farsi/f_index.php';
	}
}