// JavaScript Document
function confirmation(q){
	var answer = confirm(q)
	if (answer){
		return true;
	}
	else{
		return false;
	}
}
//-->
