
function openWindow(url,w,h){
var x=window.open(url,'newWin'+new Date().getTime(),'width='+w+',height='+h+',scrollbars=1,toolbar=0,status=0,menubar=0,links=1,resizable=1');
x.focus();
}

function nextLetter(s){
    return s.replace(/([a-zA-Z])[^a-zA-Z]*$/, function(a){
        var c= a.charCodeAt(0);
        switch(c){
            case 90: return 'A';
            case 122: return 'a';
            default: return String.fromCharCode(++c);
        }
    });
}
