ckeditor_toolbar=[
                  { name: 'document', items : [ 'NewPage','Preview', 'Save' ] },
                  { name: 'clipboard', items : [ 'Cut','Copy','Paste','PasteText','PasteFromWord','-','Undo','Redo' ] },
                  { name: 'editing', items : [ 'Find','Replace','-','SelectAll','-','Scayt' ] },
                  { name: 'insert', items : [ 'Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'
                           ,'Iframe' ] },
                          '/',
                  { name: 'styles', items : [ 'Styles','Format' ] },
                  { name: 'basicstyles', items : [ 'Bold','Italic','Strike','-','RemoveFormat' ] },
                  { name: 'paragraph', items : [ 'NumberedList','BulletedList','-','Outdent','Indent','-','Blockquote' ] },
                  { name: 'links', items : [ 'Link','Unlink','Anchor' ] }
              ];

Win=null;
function winopen(imWidth,imHeight,page_url)
{
   var window_width = imWidth+50;
   var window_height = imHeight+50;
                    
   if(window.screen){
     aw=screen.availWidth;
     ah=screen.availHeight;
   }else{
     aw=640;
     ah=450;
   }
   tx=(aw-window_width)/2;
   ty=(ah-window_height)/2;
   
   //if(Win!=null && !Win.closed) Win.close();
   //if(Win==null || Win.closed){
      Win = window.open(page_url,"",'width=' + window_width + ',height=' + window_height + ',resizable=1,top='+ty+',left='+tx+',scrollbars=yes,menubar=no,status=yes');
   //}
   //Win.focus();
}

