set_evt(window,'load',function(){
set_evt(d('nozzle_demo'),'click',function(){
var img = '
'+(announcement_popup || 'Eh')+'
';
var popup_width = 600;
d('popup_content').style.height="350px";
d('spop').style.visibility = 'visible';
d('spop').style.top='80px';
d('spop').style.left=(winW - 900)+'px';
d('spop').style.width=popup_width+'px';
d('t_win1').style.width=popup_width+'px';
d('popup_title').innerHTML='Announcement';
d('popup_content').innerHTML = img;
var p_tbl = dd.call(d('spop'),'table')[0];
var p_cell = dd.call(p_tbl,'td')[0];
p_tbl.width = popup_width;
p_cell.width = p_tbl.width-20;
_css(d('popup_content'),{'overflow':'auto'});
});
});