function SubmitYes(theForm) {
	theForm.sYesNoButton.value = "Yesbuttonclicked"
	theForm.submit()				
}
function SubmitNo(theForm) {
	theForm.sYesNoButton.value = "Nobuttonclicked"
	theForm.submit()				
}	
