<!--
function myRedirect(myURL, myTarget, fwidth, fHeight){
	var hWnd = window.open(myURL, myTarget,"height="+fHeight+", width="+fwidth+", top=50, left=50,scrollbars=yes,resizable=yes");
	//var hWnd = window.open(myURL, myTarget);
	//alert(window);
	if ((window != null) && (!hWnd.opener))
	{
		hWnd.opener = window;
	}
	return false;
}

//預覽圖片用
function UpdatePreview(imgFile){
	if ((imgFile != null) && (imgFile != "")) 
	{ 
		window.opener.document.getElementById("message").contentWindow.focus();
		window.opener.document.getElementById("message").contentWindow.document.execCommand("InsertImage", false, imgFile);
	} 
	window.opener.document.getElementById("message").contentWindow.focus();
	window.close();
}
function ReplaceAll(strOrg,strFind,strReplace){
	var index = 0;
	while(strOrg.indexOf(strFind,index) != -1){
		strOrg = strOrg.replace(strFind,strReplace);
		index = strOrg.indexOf(strFind,index);
	}
	return strOrg
}

	function myDelete(){
		if(!checkDataGrid()){
			return false;
		}else if(confirm('是否確定刪除此筆資料!')==true){
			return true;
		}
		return false;
	}

-->