// JavaScript Document

var win = null;
var window_id_enumerator = 0;

function OpenMyWindow(win_url,win_title,win_width,win_height,win_theme)
{
 var default_height = 300;
 var default_width = 300;
 var status_bar_text = '&nbsp;';	// Tekst u status bar-u
 
 var window_id = '';	// 'win_' + window_id_enumerator;
 window_id_enumerator++;
 
 if (!win_title)		win_title='Nedefinisan naslov - Danilo popravi ovo';
 if (!win_height)		win_height = default_height;
 if (!win_width)		win_width = default_width;
 if (!win_theme)		win_theme = 'tp_editor';
 
 if (win!=null)
 	Windows.closeAll();
 
 win = new Window(window_id, {className: (win_theme), title: (win_title + window_id), width: win_width, height: win_height, url: win_url});
 win.setDestroyOnClose();
 win.setStatusBar(status_bar_text);
 win.showCenter();
}


