// [MODULE-HEADER]
// *************************************************************************************************
//
// Name:				ShoWareFrontEndPerformanceDetails.js
//
// Created:			19/6/2003 VisionOne WorldWide fbe
// Modified:		19/6/2003 VisionOne WorldWide fbe	: Creation
//
// *************************************************************************************************


//
// Calls the Ticket reservation page for a performance
//
function PerformanceDetailsOrderTickets(performanceID)
{
	var newUrl = NAVIGATIONHELPER_ShoWareFrontEndPerReservation + "?PERFORMANCEID=" + performanceID;
	var windowClosed = window.opener == null;
	if (!windowClosed)
	{
		windowClosed = window.opener.closed;
	}
	
	if (!windowClosed)
	{
		window.opener.location.href = newUrl;
	}
	else
	{
		window.open(newUrl);
	}
	
	self.close();
}

//
//This function opens the url in a new window
//
function PerformanceDetailsOrderTicketsNewWin(performanceID)
{
	var newUrl = NAVIGATIONHELPER_ShoWareFrontEndPerReservation + "?PERFORMANCEID=" + performanceID;
	window.open(newUrl);
}