function sort_by_price_qty(sortminp,sortmaxp,sortqty)
{
	
	//for sort by price range or quantity
	//sortminp : is value of the min prince range selected to ignore it live it empty
	//sortmaxp : is value of the max prince range selected to ignore it live it empty
	//sortqty : is value of the quantity selected to ignore it live it empty
	
	if(sortqty=="")
		sortqty="all";
	if(sortminp=="")
		sortminp="nomin";
	if(sortmaxp=="")
		sortmaxp="nomax";
	
	fparam=sortminp+'-'+sortmaxp+'-'+sortqty+'-';
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}

function show_selected_tickets(listtic)
{
	//for compare
	//listtic : is the selected tickets palced in array 
	
	fparam='nomin-nomax-all-'+listtic.toString();
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}

function show_all_tickets()
{
	//for reset and to view all tickets
	
	fparam='nomin-nomax-all-';
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}

function show_infoclip(section)
{
	//to show the map section on mouse over
	//section: is the section name
	
	document.getElementById("venuemaps").mod_wssection("section",section);
}


function show_parking_image()
{
	//to show parking
	
	document.getElementById("venuemaps").mod_wssection("parking","");
}

function sort_by_price_range(sortminp,sortmaxp)
{
	//to show the section having the selected price range
	//sortminp : is value of the min prince range 
	//sortmaxp : is value of the max prince range 
	
	fparam=sortminp+'-'+sortmaxp+'-all-';
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}

/*function section_sort (eventid, section)
{
}*/
