// ==========================================================
// This file contains JavaScript functions for manipulating
// windows opened up by the client.
// ==========================================================


<!--Hide script from old browsers

function newWindow(newContent) {
  winContent = window.open(newContent, 'nextWin', 'right=0, top=0, width=618, height=540, toolbar=no, scrollbars=no, resizable=no');         
}
    
function newLinkWindow(newContent) {
  winContent = window.open(newContent, 'nextWin', 'right=0, top=0, width=850, height=768, toolbar=yes, scrollbars=yes, resizable=yes, location=yes');         
}

function newMovieWindow(newContent) {
  winContent = window.open(newContent, 'nextWin', 'right=0, top=0, width=478, height=440, toolbar=no, scrollbars=no, resizable=no');         
}

// top hiding script from old browsers -->
