document.onmousedown = function()
{
	for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}

function confirmAct(msg)
{
	var agree=confirm(msg);
	if (agree){
		return true;
	}
	else{
		return false;
	}
}