function waitStart(){
	var watingflash = '<object style="margin-left:120px;" '
        + '\nclassid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '
        + '\ncodebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" '
        + '\nwidth="20" '
        + '\nheight="20">'
		+ '\n<param name="movie" value="loading.swf" />'
		+ '\n<param name="scale" value="noborder" />'
		+ '\n<param name="menu" value="false" />'
		+ '\n<param name="quality" value="high" />'
		+ '\n<param name="bgcolor" value="#F7F7F7" />'
		+ '\n<embed src="loading.swf"'
        + '\nquality="high"'
        + '\nbgcolor="#F7F7F7"'
        + '\nscale="noborder"'
        + '\nwidth="20"'
        + '\nheight="20"'
        + '\ntype="application/x-shockwave-flash" '
        + '\npluginspace="http://www.macromedia.com/go/getflashplayer">'
    + '\n</embed>'
	+ '\n</object>';
	wdiv = document.getElementById("wait");
	wdiv.innerHTML = watingflash;
	wdiv.style.display = 'block';
}

function waitStop(){
	wdiv = document.getElementById("wait");
	wdiv.style.display = 'none';
}
