function confirmSubmit(confirmText)
{
if (confirm(confirmText))
	return true ;
else
	return false ;
}