Ext.get('tour').on('click', function()	{
	var win = new Ext.Window({
		id: 'tour_win',
		bodyStyle: 'background-color: #333333;',
		modal: true,
		frame: false,
		shadow: false,
		closable: false,
		draggable: false,
		resizable: false,
		y: 150, 
		html: '<div style="margin-bottom:10px;"><img src="/image/index/popup_title.gif" width="503" height="52" alt="" usemap="#close" /></div>'+
				'<div style="text-align:center;margin-bottom:10px;"><object type="application/x-shockwave-flash" data="/image/download/download_flash.swf" width="465" height="360">'+
				'<param name="movie" value="/image/download/download_flash.swf" />'+
				'<param name="quality" value="high" />'+
				'<param name="bgcolor" value="#333333" />'+
				'</object></div>'+
				'<map name="close"><area shape="rect" coords="423,25,477,40" href="#" onclick="Ext.getCmp(\'tour_win\').close(); return false;" alt="" /></map>',
		width: 503
	}).show();
});
