function showMore(id){ var tmpDetails = document.getElementById('details_'+id); if (tmpDetails.style.display == 'none'){ tmpDetails.style.display = 'block' }else{ tmpDetails.style.display = 'none' } } function joinEMailer(){ var tmpJoinMailer = document.getElementById('joinMailer'); var tmpAdd_email = document.getElementById('add_email'); if (tmpJoinMailer.value != ""){ tmpAdd_email.submit(); } } function turnPage(albumid, pageid){ window.location.href="/eophotos&albumid="+albumid+"&pageid="+pageid }