function SetEmail(ids, p)
{
	var o=document.getElementById("fe");
	
	if(p==0) o.value=clubs[ids][0];
	if(p==1) o.value=clubs[ids][1];
}

function Init()
{
}

function pngdisplay(image, width, height) 
{
	if(navigator.appName=='Microsoft Internet Explorer') 
	{ 
		document.write('<img src="http://alexfitness.ru/images/empty.gif" style="width: ' + width + '; height: ' + height + '; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + image + ', sizingMethod=scale)">');
	} 
	else 
	{
		document.write('<img src="' + image + '" style="width: ' + width + '; height: ' + height + '">');
	}
}

function ShowOtherCity()
{
	var o=document.getElementById("other-city");
	var os=document.getElementById("other-city-div");

	if(o.style.display=='none')
	{
		o.style.display='block';
		os.style.display='none';
	}
	else
	{
		o.style.display='none';
		os.style.display='block';
	}
}

function ShowOtherClubs()
{
	var o=document.getElementById("other");
	var os=document.getElementById("other-select");

	if(o.style.display=='none')
	{
		o.style.display='block';
		os.style.display='none';
	}
	else
	{
		o.style.display='none';
		os.style.display='block';
	}
}

function ShowOtherGalClubs()
{
	var o=document.getElementById("other-gal");
	var os=document.getElementById("other-gal-select");

	if(o.style.display=='none')
	{
		o.style.display='block';
		os.style.display='none';
	}
	else
	{
		o.style.display='none';
		os.style.display='block';
	}
}

function ShowOtherSClubs()
{
	var o=document.getElementById("sother");
	var os=document.getElementById("sother-select");

	if(o.style.display=='none')
	{
		o.style.display='block';
		os.style.display='none';
	}
	else
	{
		o.style.display='none';
		os.style.display='block';
	}
}

function SetClub(club_title)
{
	var club=document.getElementById("club");
	var cclub=document.getElementById("current-club");
	
	if(club_title!='')
	{
		club.value=club_title;
		cclub.innerHTML=club_title;
		
		ShowOtherSClubs();
	}
}

