function createWindow(what, where, how) 
{
    var URL = where;
    var windowName = what;

    var tmpWin = window.open (URL, windowName, how);
    tmpWin.focus();
}