// JavaScript Document

function pop_up(href, titulo,  w,h, left, top ){
window.open(href, titulo, "menubar=0,toolbar=0,scrollbars=1,directories=0,resize=0,width="+w+",height="+h+",left="+left+", top="+top); 

}

function pop_up_scroll(href, titulo,  w,h, left, top ){
window.open(href, titulo, "menubar=0,toolbar=0,scrollbars=0,directories=0,resize=0,width="+w+",height="+h+",left="+left+", top="+top); 

}


var sURL = unescape(window.location.pathname);
function refresh()
{
    window.location.href = sURL;
}
