var ticket_id = 0;
function popUp(URL,x,y)
{
    fenster = window.open(URL, '', 'width=' + x + ',height=' + y +',location=0,status=1,menubar=0,scrollbars=1,resizeable=0');
    fenster.moveTo(((screen.width-x)/2), ((screen.height-y)/2));
}
function setTicketId(vId)
{
    ticket_id = vId;
    //alert(vId);
}
function getBookingPopup(ticket_id)
{

    if(document.getElementById('logged_in').value=='true')
        popUp('buchung/buchung_step2.php?id=' + ticket_id,655,620);
    else
        popUp('no_login.php?buchen=1&ticket_id=' + ticket_id,380,310);//270
}
function getRequestPopup(ticket_id)
{
    //alert(ticket_id);
    if(document.getElementById('logged_in').value=='true')
        popUp('getRequest.php?ticket_id=' + ticket_id,655,620);
    else
        popUp('no_login2.php?buchen=1&ticket_id=' + ticket_id,380,310);
}