function stopNewWindow(){
	displaycenter(this.href);
	return false;
	}

function displaycenter(){
		if (!e) var e = window.event;
	whichlink=(e.target) ? e.target.id : e.srcElement.id;
	whathtml(whichlink);
}

//entry point for first display

function whathtml(whichlink){
	add1="'"+whichlink+"'";
	address = "<object type='text/html' width='100%' height='90%' data="+add1+" / >";
	showCenter(address);
}

function showCenter(address){

	d = document.getElementById("middle");
	d.innerHTML= address;

}

