<!--

// function used for opening new windows
function openWindow( src, name, width, height, scrollbar,menu,resize ) {
   var new_window = window.open( src, name, 'toolbar=no,width='+ width +',height='+ 
                    height+',scrollbars=' + scrollbar +',menubar=' + menu+',resizable=' + resize );
   new_window.focus();
}

//-->



