function init() {
	tinyMCEPopup.resizeToInnerSize();
}
function insertBanglachar(chr){	
	tinyMCE.execCommand('mceInsertContent', false, chr);//command, user_interface, value	
	//tinyMCE.execCommand('mceInsertRawHTML', true, chr);//command, user_interface, value
	//need repaint the brower for opera and firefox
	//inst.execCommand("mceRepaint");
	//tinyMCE.repaint();
	//tinyMCE.triggerNodeChange(true);
		
	// Refocus in window
	if (tinyMCEPopup.isWindow)
		window.focus();
}
function insertToZoom(val){
	var myZoom= document.getElementById('zoomit');
	myZoom.innerHTML = val;
}
