function ValidateSMS(obj)
{
	var chkSMS = document.getElementById("chkSMS");
	var txtCellPhone = document.getElementById("txtCellPhone");
	if (chkSMS != null && txtCellPhone != null)
	{
		if (obj.id == "chkSMS")
		{
			if (txtCellPhone.value == "")
			{
				if (chkSMS.checked == true)
				{
					alert("Önce cep telefon numaranızı yazmalısınız.");
					chkSMS.checked = false;
				}
			}
		}
		else if (obj.id == "txtCellPhone")
		{
			if (txtCellPhone.value == "")
			{
				chkSMS.checked = false;
			}
		}
	}
}

function SetHomePage(page)
{
	page.style.behavior='url(#default#homepage)'; 
	page.setHomePage('http://www.ermeniteroru.com');
}

function OpenWindow(page)
{
	//alert("../Files/" + page + "/" + page + ".html");
	window.open("../Files/" + page + "/" + page + ".html", page, "width=400,height=350,top=20,left=20,scrollbars=no");
}
function OpenWindow2(page)
{
	//alert("../Files/" + page + "/" + page + ".html");
	window.open("articles/" + page, page, "width=600,height=500,top=20,left=20,scrollbars=yes");
}
function PrepareCalendar()
{
      Zapatec.Calendar.setup({
        firstDay          : 1,
        weekNumbers       : true,
        showOthers        : true,
        showsTime         : false,
        timeFormat        : "24",
        step              : 1,
        range             : [1900.01, 2999.12],
        electric          : false,
        singleClick       : true,
        inputField        : "txtCalendar",
        button            : "btnCalendar",
        ifFormat          : "%d.%m.%Y",
        daFormat          : "%Y/%m/%d",
        align             : "Br"
      });
}