// --------------------------------------------------------------------------------
/*
*/
// --------------------------------------------------------------------------------

// --------------------------------------------------------------------------------
// --------------------------------------------------------------------------------

var Show =
{
	SVCURI: "http://" + document.domain + ":" + window.location.port + "/ropemarks-5.0.0/shows/show_svc.php",
	//alert( SVCURI );

	// --------------------------------------------------------------------------------
	// Private section
	// --------------------------------------------------------------------------------
	
	// --------------------------------------------------------------------------------
	// Public section
	// --------------------------------------------------------------------------------
	
	getShow: function( boxId, showId, langId )
	{
//		alert( "Show.getShow( " + boxId + ", " + showId + " ) " );

		var boxId = "#" + boxId;
		var reqUri = this.SVCURI + "?showId="+ showId + "&langId=" + langId + "";
		$(boxId).load(reqUri);
	}//,
	
}; // Class Show

/* EOF */
