function message(text) {
	if (text == null) text = 'null'
	
	//   ,    //
	//if (typeof text != 'string') text = String(text);
	
	//text = text.replace(/\t/g, '&nbsp;&nbsp;&nbsp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/[\r\n]/g, '<br />')
	// ,   //
	if (typeof wind == 'undefined') {
    	wind = document.createElement('div')
      k_img = document.createElement('div')
    	buton=document.createElement('div')
    	wind.setAttribute('id','msg')
      k_img.setAttribute('id','img_k')
    	buton.setAttribute('id','btn_ms')
      buton.innerHTML = 'ok'
    //alert(wind.innerHTML)
		wind.innerHTML = text
    
		document.body.appendChild(wind)
    wind.appendChild(k_img)
		wind.appendChild(buton)
		//    Ctrl //
		buton.onmousedown = function (e) {
      wind.removeChild(k_img)
			wind.removeChild(buton)
			document.body.removeChild(wind)
			wind = undefined
		}
	}
	else {
		wind.innerHTML= text
    
    document.body.appendChild(wind)
    wind.appendChild(k_img)
		wind.appendChild(buton)
		//    Ctrl //
		buton.onmousedown = function (e) {
			wind.removeChild(buton)
			document.body.removeChild(wind)
			wind = undefined
		}
	  
  }
}