/**
 * @author his90
 */
var ajax;
var comet_siteurl = 'http://www.mtmd.tw';

function creatIFrame_ajax(){
    var now_row = $('now_row').value;
    var msgbox = 'ShowBlogReadContent';
    var actionurl = comet_siteurl + '/ajax.htm?ajax_action=comet_blogread_ajax&now_row=' + now_row;
    
    //Interactive Now ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ajax = new Ajax.Updater(msgbox, actionurl, {
        method: 'get',
        onComplete: function(){
            new Effect.Appear(msgbox, {
                duration: 0
            });
        },
        asynchronous: true,
        evalScripts: true
    });
};//end func	
function creatIFrame(){
    var now_row = $('now_row').value;
    var iframe_src = comet_siteurl + '/ajax.htm?ajax_action=comet_blogread&now_row=' + now_row;
    $('comet_iframe_blogread').src = iframe_src;
    
    
};//end func
function run_creatIFrame(sec){
    //var sec_len = sec.length;
    
    setTimeout(creatIFrame_ajax, sec);
    /*
     if (sec_len != '') {
     setTimeout(creatIFrame, sec);
     }
     else {
     setTimeout(creatIFrame, 1500);
     }//end if
     */
};//end if	
