function openModal(){
	MOOdalBox.open( 
	"test", // the link URL
	"", // the caption (link's title) - can be blank
	"500 150" // width and height of the box - can be left blank
	);
}

window.onload = function() {
	//hide();
	var deadlinks=document.getElementsByTagName("a");
	for (var i=0; i<deadlinks.length; i++){
		if(deadlinks[i].href.lastIndexOf("#") === deadlinks[i].href.length - 1){		
			deadlinks[i].onclick = openModal;		
		}
	}
}
