function my_confirm() { return confirm("Biztos benne?"); }
function l(url) { window.location = url; }
function wopen(url) { win = window.open(url, 'newwin'); }
function myPopUp(url,width,height,name){
    var open_args="toolbar=0,location=0,directories=0,status=0,scrollbars=1,menubar=0, resizable=1,width="+width+",height="+height;
    var ablak = window.open(url,name,open_args);
    ablak.moveTo((screen.availWidth-width)/2,(screen.availHeight-height)/2);
    ablak.focus();
    return false;

}
function copyclipboard(value) { window.clipboardData.setData('Text', value); }
