function show_new_window(surl,iwidth,iheight,status,toolbar)
{
    newWindow = document.open(surl, "New", "width=" + iwidth + ",height=" + iheight + ",top=200, left=200, status=" + status + ",toolbar=" + toolbar + ",menubar=no,scrollbars=yes,resizable=yes"); 
    newWindow.window.focus();
}

function redirect_page(surl)
{
    document.location.href = "" + surl; 
}
