FensterB = null;

function res_sinasi(dateid)
{
	FensterB = window.open("../../kartenreservierung/Reservierung.php?id=" + dateid + "&cat=0", "Kartenreservierung", "toolbar=no,menubar=no,resizable=no,dependent=yes,location=no,top=0,left=0,width=390,height=670");
	FensterB.focus();
}

function res2(dateid, category)
{
	FensterB = window.open("Reservierung.php?id=" + dateid + "&cat=" + category, "Kartenreservierung", "toolbar=no,menubar=no,resizable=no,dependent=yes,location=no,top=0,left=0,width=390,height=670");
	FensterB.focus();
}

function res(dateid)
{
	return res2(dateid, 0);
}


/*
        category 0 - freie platzwahl
        for saalbau
                category 1 - highest category
                category 2 - normal category
*/
function buchen(pid, category)
{
        var cat = 0
        if (category == 1)
                cat = 1;
        if (category == 2)
                cat = 2;

        FensterB = window.open("book.php?PID=" + pid + "&cat=" + cat, "Kartenreservierung", "toolbar=no,menubar=no,top=0,left=0,width=385,height=545");
        FensterB.focus();
}



