var visibleID="popRegular";

function SpaceLeft(tour) {
	if(tour>2) {
		document.writeln("&nbsp;&nbsp;&nbsp;<span class='space'>("+tour+" spaces left)</span>");}
	else if(tour==2) {
		document.writeln("&nbsp;&nbsp;&nbsp;<span class='space-crit'>(ONLY "+tour+" spaces left)</span>");}
	else if(tour==1) {
		document.writeln("&nbsp;&nbsp;&nbsp;<span class='space-crit'>(ONLY "+tour+" space left)</span>");}
	else if(tour==0) {
		document.writeln("&nbsp;&nbsp;&nbsp;<span class='space-crit'>(This tour is FULL)</span>");}
	else if(tour==-9) {
		document.writeln("&nbsp;&nbsp;&nbsp;<span class='space-crit'>(This tour has been CANCELLED)</span>");}
	else if(tour==-99) {
		document.writeln("&nbsp;&nbsp;&nbsp;<span class='space-none'>(Tour COMPLETED)</span>");}
	else if(tour==-999) {
		document.writeln("&nbsp;&nbsp;&nbsp;<span class='space-none'>(Tour in progress)</span>");}
}
