// JavaScript Document

function showPicture(picture){
	if(document.getElementById) {
		document.getElementById('placeholder').src = picture.href;
		return false;	
	} else {
		return true;
	}
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



function setCurrentLink() {

	var strCurrentPath = document.location.href;

	for (i=0; i < document.links.length; i++) {

		if (strCurrentPath.match(document.links[i].href)) {

			var linkki = document.links[i];

			linkki.href = "#";

			linkki.className = "activelink";
		}
	}
}