function userConf(sQuestion,sHref) {
	
var doit = confirm(sQuestion);

if(doit){
	window.location.href = sHref;
	return true;
} else
	return void(0);
}
