function openWindow(win_id, win_title, win_url, win_width, win_height) 
{
    win2 = new Window(win_id, {className: "theme1", title: win_title, minimizable: false, maximizable: false, top:0, left:0, width:win_width, height:win_height, top:150, left: 350, zIndex:150, opacity:0, resizable: true, url: win_url});
    win2.setDestroyOnClose();   
    win2.setCookie();
    win2.show();
}

function openNewWindow(url, win_width, win_height, toolbar)
{
    if(toolbar)
        newwindow=window.open(url,"name","scrollbars=1, resizable=1, height=" + win_width + ",width=" + win_height + ", toolbar=1");
    else
	    newwindow=window.open(url,"name","scrollbars=1, resizable=1, height=" + win_width + ",width=" + win_height);
	    
	if (window.focus) {newwindow.focus()}
}