function insertAction2(elm) {
    inst = window.opener.tinyMCE.selectedInstance;  
    tinyMCEPopup = window;
    
    if(inst) {
	    var html = "<img src=\""+elm.src+"\"/>";
	    // alert(elm.src);
	    inst.execCommand("mceInsertContent", false, html);
	    //inst._setEventsEnabled(inst.getBody(), false);
    } else {
       opener.document.getElementById('image').value=elm.src;
    }
    tinyMCEPopup.close();
}
/*
function chooseImagePopUp(URL) {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=680,left = 650,top = 450');");
} 
*/
