function openWindow ( url, winName, w, h) {
    var win = window.open( url, winName, "width="+w+",height="+h );
    win.focus();
}