function FadeMe(Obj,Mode) { Obj.style.filter= !Mode ? "Blur()" : ""; }
function FadeMe2(Obj,Mode) { Obj.style.filter= !Mode ? "Gray()Blur()" : ""; }
function FadeMe3(Obj,Mode) { Obj.style.filter= !Mode ? "Gray()Blur()alpha(opacity=70)" : ""; }

function ShowAlbum(AID)
{
	document.location="Album.php?Album="+AID;
}

function SwitchAlbum(Obj)
{
	ShowAlbum(Obj.value);
}

function ShowFolder(FID)
{
	document.location="View.php?ID="+FID;
}


function SwitchFolder(Obj)
{
	ShowFolder(Obj.value);
}



function ShowThePhoto(Folder,Path,W0,H0) {

	var MinW =300;

	W0=(W0>MinW ) ? W0 : MinW ;

	W=parseInt(W0)+18; //17
	H=parseInt(H0)+90; //70
	Url="Photo.php?Folder="+Folder+"&Path="+Path+"&Width="+W0;
	showModalDialog(Url,
					"MM",
					"dialogWidth:"+W+"px; dialogHeight:"+H+"px; status:no; center:yes");
}


function DescAct()
{
	Obj=document.getElementById("Description");
	alert(Obj.style.display);
	if(Obj.style.display=="none"){	Obj.style.display="";	}
	else{	Obj.style.display="none";	}
}

