function submit_ajaxform(formNameValue)
{
  //alert(formNameValue)
  var func_un=formNameValue.split('_');
  document.getElementById(func_un[0]+'_formName').value=formNameValue;
  xajax.config.requestURI+="&un="+func_un[0]
  //alert(xajax.config.requestURI);
  xajax_processForm(xajax.getFormValues(func_un[0]));
  return false;
}
function openBook(url)
{
	window.open(url,'',"width=800,height=600,scrollbars=1,resizable=0,addressbar=0,status=0,toolbar=0");	
}
  

