function detailWindow(url, title, table, id) 
{
    var targetPage = url + "?table=" + table + "&id=" + id;
    newwindow = window.open(targetPage,title,"width=800,height=550,scrollbars=yes,menubar=yes,toolbar=yes,status=yes,resizable=yes");
    if (window.focus) 
    {
      newwindow.focus();
    }
}

function detailWindow(url, title, table, id, width, height)
{
    var targetPage = url + '?table=' + table + '&id=' + id;
    newwindow = window.open(targetPage,title,"width=" + width + ",height=" + height +
        " ,scrollbars");
    if (window.focus) 
    {
      newwindow.focus();
    }
}

function popup(url, title)
{
    newwindow = window.open(url,title,"width=800,height=570,scrollbars=yes,menubar=yes,toolbar=yes,status=yes,resizable=yes");
    if (window.focus) 
    {
      newwindow.focus();
    }
}

function backToMainWindow(redir) 
{
    window.opener.location.href=redir;
    self.close();
}
		
function openWin(win, width, height) 
{
    str= "" + win;
    w   = "width=" + width;
    h   = "height=" + height;
    opt = "scrollbars=yes,menubar=yes,toolbar=yes,status=yes,resizable=yes," + w + "," + h;
    pressWin = window.open(str,"",opt);
    if (window.focus) 
    {
      pressWin.focus();
    }
}