<!--
function jsconfirm(confirmtext)
{
	if (confirm(confirmtext)) {
	return true;
	}
	else {
	return false;
	}
}
//-->