<!-- Begin
function openWindow(page) {
OpenWin = this.open(page, "popWindow", "width=500,height=600,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,top=120,left=120"); 
OpenWin.focus();
}

function openWindowBig(page) {
OpenWin = this.open(page, "popWindow", "width=815,height=615,toolbar=yes,menubar=no,location=no,scrollbars=yes,resizable=yes,top=5,left=5"); 
OpenWin.focus();
}

function openWindowFull(page) {
OpenWin = this.open(page, "popWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes"); 
OpenWin.focus();
}
-->