function SendForm( sbmt_id )
{
	setTimeout( "ShowAnimatedWotsit('"+sbmt_id+"');", 5 );
}
function ShowAnimatedWotsit(sbmt_id)
{
	var submitbutton = document.getElementById(sbmt_id);
	submitbutton.disabled = true;
	var scrw = window.screen.width;
	var scrh = window.screen.height;
	var busyimgpos_x = parseInt(scrw/2) - 110;
	var busyimgpos_y = parseInt(scrh/2) - 100;
	var busydiv = document.getElementById("busyimg");
	busydiv.style.left = busyimgpos_x+"px";
	busydiv.style.top = busyimgpos_y+"px";
	busydiv.style.position = "absolute";
	var busyimg = document.createElement('img');
	busyimg.setAttribute('src', "i/loading.gif");
	busyimg.setAttribute('width', "100");
	busyimg.setAttribute('height', "100");
	busydiv.appendChild(busyimg);
}
