function viewMore(div) {
	obj = document.getElementById(div);
	col = document.getElementById("x" + div);
	
	if (obj.style.display == "none") {
		obj.style.display = "block";
		col.innerHTML = "Hide the comment form";
	} else {
		obj.style.display = "none";
		col.innerHTML = "Leave comment";
	}
}

function PopupPic(sPicURL) {
window.open( "http://www.pavelblazek.com/finse2007/images/popup.htm?"+sPicURL, "", "resizable=1,HEIGHT=100,WIDTH=100, Left=100, Top=100");
}

function externalLinks() { 
 if (!document.getElementsByTagName) return; 
 var anchors = document.getElementsByTagName("a"); 
 for (var i=0; i<anchors.length; i++) { 
   var anchor = anchors[i]; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "external") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;