function openWin(destination, width, height) {
  newWin = window.open(destination, 'NewWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+width+',height='+height);
  newWin.focus();
}

function gallery(directory, cfgName) {
    if (cfgName) {
        openWin("/gallery.php?cfgDirectory="+directory+
                (cfgName ?
                "&cfgName="+cfgName : "") +
                "&index=1", 500, 400);
    } else {
        openWin("/gallery.php?cfgDirectory="+directory+"&index=1", 500, 400);
    }
}

function fantv() {
  openWin('http://www.mediatools.tv/fan_tv/start.htm', 730, 460);
}
