// copyright nicolas varin 2006
// javascript functions

function cacherImage(monElement) 
{
    document.getElementById(monElement).style.display='none';
}
function montrerImage(monElement) 
{
    document.getElementById(monElement).style.display='block';
}
function leaveVisible(monElement) 
{
	document.getElementById('subMenuRoster').style.display='none';
	document.getElementById('subMenuVenue').style.display='none';
	document.getElementById('subMenuContact').style.display='none';
	document.getElementById('subMenuComponants').style.display='none';
	document.getElementById('subMenuDate').style.display='none';
	document.getElementById(monElement).style.display='block';
}
function goArtistPage(string){
	if(document.getElementById('idArtistPageToGoTo').value)
	{
		var chaine = string.split('|');
		var idArtist = chaine[0];
		window.location.href = '../private/index.php?a=artistFile&idArtist='+idArtist;
	}
}
function goArtistPageAuto(string, page){
	if(document.getElementById(string).innerHTML)
	{
		window.location.href = '../private/index.php?a='+page+'&idArtist='+string;
	}
	else
	{
		alert('problem contact vain_nicolas@yahoo.fr')
	}
}
function goContactPage(string){
	if(document.getElementById('idContact').value)
	{
		var chaine = string.split('|');
		var idArtist = chaine[0];
		window.location.href = '../private/index.php?a=newContact&idContact='+idArtist;
	}
}
function goContactPageAuto(string){
	if(document.getElementById(string).innerHTML)
	{
		window.location.href = '../private/index.php?a=newContact&idContact='+string;
	}
	else
	{
		alert('problem contact vain_nicolas@yahoo.fr')
	}
}
function goVenuePageAuto(string){
	if(document.getElementById(string).innerHTML)
	{
		window.location.href = '../private/index.php?a=newVenue&idClub='+string;
	}
	else
	{
		alert('problem contact nicolasvarin@gmail.com')
	}
}
function goVenuePage(string){
	if(document.getElementById('idClub').value)
	{
		var chaine = string.split('|');
		var idVenue = chaine[0];
		window.location.href = '../private/index.php?a=newVenue&idClub='+idVenue;
	}
}
function goCityPage(string){
	if(document.getElementById('city_name').value)
	{
		var chaine = string.split('|');
		var idLeVille = chaine[0];
		window.location.href = '../private/index.php?a=newCityScreen&idCity='+idLeVille;
	}
}
function goCityPageAuto(string){
	if(document.getElementById(string).innerHTML)
	{
		window.location.href = '../private/index.php?a=newCityScreen&idCity='+string;
	}
	else
	{
		alert('problem contact nicolasvarin@gmail.com');
	}
}
function opacityPicture(string){
	var element = 'check'+string;
	var picto = 'pict'+string;
	if (document.getElementById(element).checked == true)
	{
		new Effect.Opacity( document.getElementById(picto), {duration:0.8, from:0.2, to:0.9} );
	}
	else
	{
		new Effect.Opacity( document.getElementById(picto), {duration:0.8, from:0.9, to:0.2} );
	}
}
function opacityPictureFadeOut(string){
	var picto = 'pict'+string;
	new Effect.Opacity( document.getElementById(picto), {duration:0.2, from:1, to:0.2} );
}
function opacityPictureFadeIn(string){
	var picto = 'pict'+string;
	new Effect.Opacity( document.getElementById(picto), {duration:0.2, from:0.2, to:1} );
}