/**
 * function to open mPlayer window
 */
function mPlayer(getVar, wwidth, wheight) {
    var wwidth = wwidth != null ? wwidth : 260;
    var wheight = wheight != null ? wheight : 80;
    x_ = screen.width / 2 - 130;
    y_ = screen.height / 2 - 45;
    var winPrm = "width="+wwidth+",height="+wheight+",left="+x_+",top="+y_+",resizable=no,menubar=no,status=no,location=no,toolbar=no,titlebar=no,scrollbars=no";
    popupWin = window.open("flash/mplayer.php?"+getVar, "mPlayer", winPrm);
    popupWin.focus();
}

/**
 * function to open window
 */
function winOpen(wurl, wwidth, wheight) {
    var wwidth = wwidth != null ? wwidth : 800;
    var wheight = wheight != null ? wheight : 600;
    x_ = screen.width / 2 - 400;
    y_ = screen.height / 2 - 310;
    var winPrm = "width="+wwidth+",height="+wheight+",left="+x_+",top="+y_+",resizable=no,menubar=no,status=no,location=no,toolbar=no,titlebar=no,scrollbars=yes";
    popUp = window.open(wurl, "popUp", winPrm);
    popUp.focus();
}

