
function openLink( winURL, winName, ww, wh, wt, wl, wscroll, wresize ) {
    theWin = window.open( winURL, winName, 'width=' + ww + ',height=' + wh + ',left=' + wl + ',top=' + wt + ',toolbar=0,location=0,status=0,menubar=0,directories=0,scrollbars=' + wscroll + ',resizable=' + wresize + '' ) ;
    if ((document.all)||(document.layers)) theWin.focus();
    return;
}
