//*--  other window open --*//

function openSubWindow(toPage, title){
        var subWindow
        subWindow=window.open(toPage, title,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=400");
subWindow.focus();
}

