﻿function getconfirm(field) 
{ 
	if (confirm(field)==true)
		return true;
	else
		return false;
}

function SignOut()
{
    if (confirm("Are you sure you want to sign out ?")==true) {
        return true;
    }
    else { return false; }
}

function CheckAll( checkAllBox ) {
	var frm = document.aspnetForm;
	var ChkState=checkAllBox.checked;
	for(i=0; i< frm.length; i++) {
		e=frm.elements[i];
		if(e.type=='checkbox') //&& e.name.indexOf('Id') != -1)
		{
			e.checked= ChkState;
		}
	}
}
/*
function openDistrictPopup()
{
    var state = document.getElementById('ctl00_mainContent_ddlState').value; 
    if(state > 0 )
        {
           var url = "AddDistrict1.aspx";
           url += "?State_Id=" + state;
           url += "&windowtype=child";
           window.open(url,'adddistrict','status=0,toolbar=0,width=320,height=160,left=600,top=300,menubar=no,titlebar=no,location=no,resizable=no,scrollbars=no');
        }
}

function openCityPopUp()
{
    var District = document.getElementById('ctl00_mainContent_ddlDistrict').value;
    if(District > 0)
        {
             var url = "AddCity1.aspx";
             url += "?District_Id=" + District;
             url += "&windowtype=child";
             window.open(url,'addCity','status=0,toolbar=0,width=320,height=160,left=600,top=300,menubar=no,titlebar=no,location=no,resizable=no,scrollbars=no');
        }
}
*/