function sortlist2(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+'-';
	//alert(fparam);
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}

function comparetic2(listtic)
{
	//for compare
	//listtic : is the selected tickets palced in array 
	
	fparam='nomin-nomax-all-'+listtic.toString();
	//alert(fparam);
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}

function resetcompare2()
{
	//for reset and to view all tickets
	
	fparam='nomin-nomax-all-';
	//alert(fparam);
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}

function tr_color2(section,row)
{
	//to show the map section on mouse over
	//section: is the section name
	
	document.getElementById("venuemaps").mod_wssection("section",section,row);
}

function Sort_by_section2(eventid,section)
{
	
}

function afficher_park2()
{
	//to show parking
	
	document.getElementById("venuemaps").mod_wssection("parking","");
}

function price_range2(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-';
	//alert(fparam);
	document.getElementById("venuemaps").mod_wssection("prix",fparam);
}


