var tableRow = (navigator.userAgent.indexOf("MSIE") > -1 ? "block" : "table-row");
var tableBlock = (navigator.userAgent.indexOf("MSIE") > -1 ? "block" : "table");

function openPhoto(id){
	var winWidth = window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : 1000;
	var winHeight = window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body != null? document.body.clientHeight : 750;
	                    	
	window.open('/terfoto/view.php#' + id, id, "width=" + winWidth + ", height=" + winHeight + ", resizable=1, scrollbars=1");
}
function showMore(){
	var i;
	var list = $$(".hiddenrow");

	for(i = 0; i < list.length; i++){
		list[i].className = "address";
		list[i].style.display = tableRow;
	}
}
