//* 打开新窗口 *//
function OpenWindowAndSetValue(Url,Width,Height,WindowObj,SetObj) {
	var ReturnStr = showModalDialog(Url,WindowObj,'dialogWidth:' + Width + 'pt;dialogHeight:' + Height + 'pt;status:no;help:no;scroll:no;');
	if (ReturnStr != '') SetObj.value = ReturnStr;
	return ReturnStr;
}

//Open Window
function OpenWindow(Url,Width,Height,WindowObj) {
	var ReturnStr = showModalDialog(Url,WindowObj,'dialogWidth:' + Width + 'pt;dialogHeight:' + Height + 'pt;status:no;help:no;scroll:no;');
	return ReturnStr;
}

//页面跳转
function JumpLocal(strFileName, CurrentPage) {
    location.href = strFileName + 'page=' + CurrentPage;
}