<!-- Begin
function access_window(url) {
close_window();
open_window(url);
}

function all_window(url) {
close_window();
chrome_window(url);
}

function indiv_window(url) {
close_window();
open_window(url);
// nochan_window(url);
}

function centre_window(url,w,h){
LPos = (screen.width) ? (screen.width-w)/2 : 0;
TPos = (screen.height) ? (screen.height-h)/2 : 0;
params = 'height='+h+',width='+w+',top='+TPos+',left='+LPos+',resizable';
centrewin = window.open(url,'',params);
}

function close_window() {
newwin = window.close();
}

function chrome_window(url) {
newwin = window.open(url,'','channelmode=1,toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1');
}

function open_window(url) {
newwin = window.open(url,'','channelmode=1,scrollbars=1,fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,taskbar=0');
}

function nochan_window(url) {
newwin = window.open(url,'','channelmode=0,fullscreen=1');
}

//  channelmode=1,fullscreen=1,toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0

//  End -->