function pageclicks(page)
{
	var val	= page;
	//alert(val);
	document.pageshow.action="?pno="+val;
	document.pageshow.submit();
}

function next_page()
{
	var val1	=document.pageshow.cpage.value;
	//var s=1;
	var val=parseInt(val1)+1;
	//alert(val);
	document.pageshow.action="?pno="+val;
	document.pageshow.submit();
}

function previous_page()
{
	var val1	=document.pageshow.cpage.value;
	//var s=1;
	var val=parseInt(val1)-1;
	//alert(val);
	document.pageshow.action="?pno="+val;
	document.pageshow.submit();
}
