// JavaScript Document
/*
$('#Warting').show();
$('#WaitingImage').show();
*/

function showWindow()
{
	if($('#Warting').parent().attr('tagName')!='BODY')
	{
		$('#Warting').appendTo(document.body);
		$('#WaitingImage').appendTo(document.body);
	}
	
	$('#Warting').css('filter', '');
	
	$(document.body).css('backgroundColor', '#999999');
	$(document.body).find('div[align="center"]').eq(0).hide();
}

function closeWindow()
{
	$(document.body).css('backgroundColor', '');
	$(document.body).find('div[align="center"]').eq(0).show();
}
