function move(theForm, pageNum) {
  theForm.curPage.value =pageNum;
  theForm.submit();
}

function openwin(url, title, width, height){
	var bodyWidth = $(document).attr("body").clientWidth - width;
	var bodyHeight = $(document).attr("body").clientHeight - height;
	var winHeight = bodyHeight - 40;
	var url = url + "&height=" + winHeight + "&timestamp=" + new Date().getTime();
	$.weeboxs.open(url,{
		contentType:'ajax', 
		width:bodyWidth, 
		height:bodyHeight, 
		title:title, 
		showCancel:false,
		okBtnName: '¹Ø±Õ'
	});
}	

function submitForm(formId) {
	var theForm = document.getElementById(formId);
	theForm.submit();
}

function format(objname) {
	var txt = $("#" + objname).val();
	txt = "\n" + txt;
	txt = txt.replace(/(\n)( |¡¡)*/g, "\n");
	txt = txt.replace(/(\n)/g, "\n¡¡¡¡");
	txt = txt.substr(1);
	$("#" + objname).val(txt);
}


