function showMore(varID, varPermalink){
varMore = ('More' + (varID));
varBtn = ('Btn' + (varID));
if( document.getElementById ) {
if( document.getElementById(varMore).style.display ) {
if(varPermalink != 0 ) {
document.getElementById(varBtn).style.display = "none";
document.getElementById(varMore).style.display = "block";
} else {
document.getElementById(varBtn).style.display = "block";
document.getElementById(varMore).style.display = "none";
}
} else {
location.href = varPermalink;
return true;
}
} else {
location.href = varPermalink;
return true;
}
}

function popWin(a){
w=window.open('http://wald-grun.com/ff11/photo.html',a,'width=530,height=400')
w.focus();
}

function winPop(b){
w=window.open(b,'photos','width=600,height=450')
w.focus();
}
