﻿function CheckDay(typeid)
{
	var countPan = document.getElementById("countday");
	if( document.getElementById("stateCode").value == typeid)
	{
		countPan.style.display = "block";
	}
	else
	{
		countPan.style.display = "none";
	}	
}

function showly(id)
{
var url='sms_input.aspx?username='+id;
window.open(url,'','scrollbars=yes,resizable=no,status=no,toolbar=no,menubar=no,location=no,width=550,height=300');
}
function over(obj){
obj.className=(obj.className == "GridMove" ? "GridItem" : "GridMove")
}
function checkAll()
{
   var a = document.getElementsByTagName("input");
   var check = document.getElementById("chkSelect");
   
   for (var i=0; i<a.length; i++)
   {
      if (a[i].type == "checkbox" && a[i].name=="checkbox") 
	    {
	  		a[i].checked = !check.checked;
	  		a[i].click();
	    }
	 }
}
