// JavaScript Document
function SelectAlbum()
{
	var album = document.getElementById('album').value;
	if(album != "")
	{
		document.location = "index.php?page=scrapbook&album=" + album;
	}
}
