function content_add(val, tag){ var oEditor = CKEDITOR.instances.content; if( tag == "img" ){ var html = "\n"; }else{ var html = "
"+val+"
"; } oEditor.insertHtml(html); } function addcontent(val){ var oEditor = CKEDITOR.instances.content; var html = "\n"; oEditor.insertHtml(html); } function poll_ok(){ var pwin = window.open("about:blank","pwin","width=250,height=220,left=10,top=10"); $("#poll").attr("target","pwin"); $("#poll").attr("action","/pollok.html"); $("#poll").submit(); pwin.focus(); }