function highlight(obj) { 
	for(var i = 0; i < document.getElementsByTagName("a").length; i++) {
		if (document.getElementsByTagName("a")[i]!=obj) {
			var o = document.getElementsByTagName("a")[i];				
			o.parentNode.parentNode.style.backgroundColor = "#FFFFFF";
		} else {
			obj.parentNode.parentNode.style.backgroundColor = "#F0F0F0";
		}
	}
}


function loaddetail(detail) {		
	if (detail.indexOf('.htm')>0) {		
		top.picture.location.href=detail;
	} else {
		detailurl = top.picture.location.href;
		if (detailurl.indexOf("/picture.htm")>0) {
			top.picture.document.getElementById("bigimg").src=detail;
		} else {
			top.picture.location.href="picture.htm?" + detail;
		}
	}
}