// Copyright (c) 2009 FDM-Design (http://dsgn-ua.com) 
     
function showWindow(url, name,  height, width) {
   newwindow=window.open(url, name, 'height='+height+'px,width='+width+'px,toolbar=no,menubar=no,location=no,status=yes,directories=no,xcenter=no,ycenter=no,dependent=yes,resizable=1,scrollbars=1'); 
   if (window.focus) {newwindow.focus()} 
  return false; 
}

 var lastMsg = 1;    
function showMessage(msgs, url, type) {
    lastMsg++;
    if (type == 'ok') { title = 'Сообщение'; mclass = 'msgs_ok';
    } else { title = 'Ошибка'; mclass = 'msgs'; }
    // hack
    title = '';
    if (!(msgs instanceof Array)) { msgs = [msgs];  }
    var mid = 'msgs-'+lastMsg;  var messages = $('<div></div>');
    for(i=0; i<msgs.length; i++) {
        messages.append(msgs[i]);
        if ((i+1) < msgs.length) { messages.append($('<hr/>')); }
    }
    
    var m = $('<div style="display:none;"><div></div><div>')
        .attr('class', mclass).attr('id', mid).append(messages);
    $('body').append(m); 
    alert(url);                                                   
    tb_show(title, url+'#TB_inline?height=800&width=600&inlineId='+mid, false);
    return false; 
 } // showMessage
