// JavaScript Document

var Wopen;

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

window.onload=function(e){

add_pop_ups();

}


function add_pop_ups(){

links=document.getElementsByTagName("a");

for(count=0;count<links.length;count++){
	if(links[count].className.indexOf("popup")!=-1){
		links[count].onclick=function(e){
			var popup = window.open(this.getAttribute("href"), "mindmap", "width=425,height=275");	
			popup.focus();
			return false;
		}
	}
}

}

function on_open(){

var Wopen=window.opener;


}