/*
 * Constructor for parameter object for bnsScriptsIntialize
 */
function BnsScriptsArguments(presentation_mode, country_id, site_url)
{
	if (typeof(presentation_mode) != 'undefined')
	{
		this.isPresentationMode = (presentation_mode.toLowerCase() == 'true'); 
	}
	else
	{
		this.isPresentationMode = false;
	}
	
	if (typeof(country_id) != 'undefined')
	{
		this.countryId = country_id; 
	}
	else
	{
		this.countryId = '';
	}
	
	if (typeof(site_url) != 'undefined')
	{
		this.siteUrl = site_url; 
	}
	else
	{
		this.siteUrl = '';
	}
	
	this.pageGuid = '';
	this.pageTitle = '';
	this.channelTitle = '';
	this.parentChannelTitle = '';
}