function popitup(url) {
	newwindow=window.open(url,'name','height=650,width=900,scrollbars=yes,resizable=yes,vAlign=middle, hAlign=center');
	if (window.focus) {newwindow.focus()}
	return false;
}
var e;
function checkExit(uri){
	if (e == 'ok'){;
	}else{
		popitup(uri);
	}
}
function confExit(){
	e = "ok";
}

function append_a() {
	var hrefs = document.body.getElementsByTagName("a");
	for (i = 0; i < hrefs.length;i++) {
		hrefs[i].onclick = confExit;
	}
}