function clipListConfiguration() {
	this.clipGenre = '';
	this.clipChannel = '';
	this.clipOrder = '';
	this.clipSearch = '';
	this.clipRecommended = '';
	this.clipsLimit = '';
	
	this.getClipListConfigurationAsString = getClipListConfigurationAsString;
}

function getClipListConfigurationAsString(delimiter)
{
	var string = '';
	if (this.clipGenre != '') {
		string += delimiter + 'alg_id=' + this.clipGenre;
	}
	else
	{
		this.clipGenre = '';
	}
	if (this.clipSearch != '' && this.clipSearch != 'szukaj teledysku' && this.clipSearch != 'szukaj klipu' ) {
		string += delimiter + 'search=' + this.clipSearch;
	}
	else
	{
		this.clipSearch = '';
	}
	if (this.clipRecommended != '') {
		string += delimiter + 'also_recommended=' + this.clipRecommended;
	}
	else
	{
		this.clipRecommended = '';
	}
	if (this.clipChannel != '') {
		string += delimiter + 'spc_id=' + this.clipChannel;
	}
	else
	{
		this.clipChannel = '';
	}
	if (this.clipOrder != '') {
		string += delimiter + 'order=' + this.clipOrder;
	}
	else
	{
		this.clipOrder = '';
	}
	if (this.clipsLimit != '') {
		string += delimiter + 'limit=' + this.clipsLimit;
	}
	else
	{
		this.clipsLimit = '';
	}
	return string;
}
