var win_width
var win_height
var left_pozition=50
var top_pozition=20
var win_tit = ''
function OpenWindow (c,w,h,tit) {
	win_width = w
	win_height = h
	win_tit = tit
    NevWin=window.open(c,'comments','width='+win_width+',height='+win_height+',left='+left_pozition+',top='+top_pozition+',scrollbars=no,status=no');
  NevWin.document.title = win_tit
}