/*
*************************************
  Created by Laszlo Bejczi 2006
  Send me a mail if u could use this code. Anyway its free to reuse.
  fikusz01 at gmail dot com
*************************************
*/

function go(url) {
    window.location = url;
}

function Confirm(msg, hova) {
    var response = window.confirm(msg);
    if (response) { go(hova); }
}

function ConfirmOnly(msg) {
    return window.confirm(msg);
}

function zene(prefix) {
    var windowwidth = 300;
    var left = (screen.width-(20+windowwidth));
    var top  = 40;
    window.open(prefix+'/zene/zene.php','Háttérzene','width='+windowwidth+',height=140,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=yes,resizable=no,screenX='+left+',screenY='+top);
}

