function downloadForm(form){
	var obj = document.forms[0];
	obj.Command.value = "Download";	
	obj.FormName.value = form;
	if(document.getElementById("message"))
	{
		document.getElementById("message").innerHTML = "";
		document.getElementById("message").style.display = "none";
	}
	obj.method = "POST";
	obj.submit();
}

function showpage(pno){
	var obj = document.forms[0];
	obj.Pno.value = pno;
	obj.Command.value = "";
	obj.submit();
}

function stateprocedure(page){
	var obj = document.forms[0];
	obj.StateForm.value = obj.StateId.value+"|"+page;	
	obj.Command.value = "";
	obj.submit();
}
