document.onmousedown = function(){for (a in document.links) document.links[a].onfocus = document.links[a].blur;}

function launch(url, w, h, r, s, m, t)
{
	var hWnd = window.open(url,"pop","width="+w+",height="+h+",resizable="+r+",scrollbars="+s+",menubar="+m+",toolbar="+t+"");
}

function confirmAct(msg)
{
	var agree=confirm(msg);
	if (agree){
		return true;
	}
	else{
		return false;
	}
}