/*-------------------------------------------------------------------------------------
 * プロジェクト名: i360
 *
 * 概要：ブログ関連Javascript
 *
 *-------------------------------------------------------------------------------------
 * 変更履歴:
 *
 *  バージョン  変更日      担当者                更新内容
 *-------------------------------------------------------------------------------------
 *  1.00        2005/12/21  noto                   新規作成
 *-------------------------------------------------------------------------------------
 */
//ブログ削除処理遷移
function deleteBlog(frm, blog_id)
{
    flg = confirm("Please click OK if you delete this entry.");
    if(flg){
        document.forms[frm].action = "index.php?module=Comp&action=CompBlogDelete";
        document.forms[frm].blog_id.value = blog_id;
        document.forms[frm].submit();
        return true;
    }
    else{
        return false;
    }
}

//ブログ登録・編集時の誓約確認
function pledgeConfirm()
{
    flg = confirm("You are loyal to a vow.");
    if(flg){
        return true;
    }
    else{
        return false;
    }
}

//画像確認
function imgWin(theURL)
{
	var opt = "";
	var winW,winH;
	var objimg = new Image();
	objimg.src = theURL;
	opt += "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes"
	if (objimg.width > 0 && objimg.height) {
		winW=objimg.width+40;
		winH=objimg.height+40;
		opt += ",width=" + winW + ",height=" + winH
	}
	win = window.open(theURL,"win",opt);
	win.focus();
	
}