function go_link_tool(page,width,height){
        if ((width < 1000) && (height < 1000)){
                window.open(page,"go_link_tool", "toolbar=yes,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no")
        }
}

function go_link_no_tool(page,width,height){
        if ((width < 1000) && (height < 1000)){
                window.open(page,"go_link_no_tool", "scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no")
        }
}

function go_link_tool_resize(page,width,height){
        if ((width < 1000) && (height < 1000)){
                window.open(page,"go_link_tool", "toolbar=yes,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes")
        }
}

function go_link_no_tool_resize(page,width,height){
        if ((width < 1000) && (height < 1000)){
                window.open(page,"go_link_no_tool", "scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes")
        }
}