// ****************************************************************
// File Name:			comfirm.js
// Description:			在用户删除、修改前提示
// Function:					
// -------------------------
// 2001-7-16,Created by yzy
// ****************************************************************

/******************************************************************
* Function Name:		confirmDelete
* Description:			在用户删除前提示，如用户确认，执行删除，否则，取消
* Parameters:			thestr-->表示欲删除内容的文本，theurl-->执行操作的页面
* Return:				无
* Author:				yzy
* Createddate:			2001-7-16
* confirmDelete Start**********************************************/
	function confirmDelete(thestr, theurl){
		if (window.confirm("删除" + thestr + "将不可恢复， 真的要删除" + thestr + "吗？")){
			document.write("<form name='comfirmform_aid' method='post' action='" + theurl + "'></form>");
			document.comfirmform_aid.submit(0);
		}
	}
/* confirmDelete End **********************************************/

