
function Go_Page(wForm,wQuery,wPagetoGo){

    var frmobj = document.forms[wForm];

	frmobj.page.value = wPagetoGo;
	//frmobj.action='?'+wQuery;
	frmobj.mothod='post';
	//RemoveNetForm(wForm);
	frmobj.submit();
}
