function doConfirm(link,msg){
	var conf = confirm(msg);
	if(conf == 1){
		document.location = link;
	}
}
function doPostConfirm(msg,form){
	var conf = confirm(msg);
	if(conf == 1){
		document.getElementById(form).submit();
	}
}
