function newWin(url,w,h){
    win = window.open(url,"newWin","width=" + w + ",height=" + h + ",top=20,left=20,status=no,scrollbars=yes,directories=no,menubar=no,resizable=no,toolbar=no");
}
window.onload = function() {
    newWin('html/news.html',520,500);
}
