	var d = document;
	function chgAlbum (id) {
	  var $em_pre = '<embed type="application/x-shockwave-flash" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" width="515" height="400" ';
	  var $fv_pre = 'flashvars="host=picasaweb.google.com&RGB=0x000000&feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fgkl0409%2Falbumid%2F';
	  var $fv_pos = '%3Fkind%3Dphoto%26alt%3Drss" ';
	  var $em_pos = 'pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';

	  if (id != "")
	  {
		  d.getElementById('album').innerHTML = $em_pre + $fv_pre + id + $fv_pos + $em_pos;
	  }
	}
	chgAlbum(d.getElementById('chgAlbum').value);
