// Wuppertal Live function www.wuppertal-live.de
var remoteTicket;

function launchTicket(nr,shop, site) {
        if (shop) {
                remoteUrl = "https://tickets.kultur-live.de";
		winSize = "height=550,width=890,";
        } else{
                remoteUrl = "http://www.wuppertal-live.de";
		winSize = "height=550,width=780,";
        }
        winFeatures = winSize + "menubar=0,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,toolbar=0,screenX=50,screenY=50,left=50,top=50,status=1,scrollbars=1";
        if (!remoteTicket) {
                remoteTicket = window.open("", "winTicket", winFeatures);
        }
        remoteTicket = window.open(remoteUrl+"/tickets/nr="+nr+";client=" + site , "winTicket", winFeatures);
}

function openPrint(id, width, height) {
	
	leftPosition = (screen.width) ? (screen.width - width) / 2 : 0;
	topPosition = (screen.height) ? (screen.height - height) / 2 : 0;
	newWinPrint = window.open ('http://common.liveclubbarmen.de/includes/print/print.php?id=' + id, 'newWin', "width="+ width + ",height=" + height + ",scrollbars=yes,resizable=yes,top=" + topPosition + ", left=" + leftPosition);
	newWinPrint.focus();
}

function openRecommendation(id, width, height) {
	leftPosition = (screen.width) ? (screen.width - width) / 2 : 0;
	topPosition = (screen.height) ? (screen.height - height) / 2 : 0;
	newWinRecommendation = window.open ('http://common.liveclubbarmen.de/includes/recommendation/recommendation.php?id=' + id, 'newWin', "width="+ width + ",height=" + height + ",scrollbars=no,resizable=no,resizable=yes,top=" + topPosition + ", left=" + leftPosition);
	newWinRecommendation.focus(); 
}
