function confirmation(msg, url){
	var val = confirm(msg);
	if (val== true){
		window.location=url;
	} else  {
		//do nothing
	}
}