My onBlur is not going to the function and is acting like it is not available...

the caller
Code:
<div id="BookingFeeF" align="left"><input name="BookingFee" onBlur="alert('***');updateDatabase()" SIZE=27 Style="width:151px;" Value=""></div>
the callee
Code:
function updateDatabase(){
alert('gh');
	var args;
	args = saveForm("Admin");
	window.open('hotel_modify.asp?' + args, 'DoStealth');
}
I get the first alert but not the second... What is going on here bob?
Michael