	var lastDiv = "" ;
	function showScreen ( divArea )
	{
		lastDiv = divArea ;
		var wd = $(document).width ( ) ;
		var ht = $(document).height ( ) ;

		$("#div_Background").css ( {"left" : "0px" , "top" : "0px" , "opacity" : 0.60} ).width( wd ).height ( ht ).show();
		var n_wd = $("#"+divArea).width ( ) ;
		var n_ht = $("#"+divArea).height ( ) ;
		$("#"+divArea).css ( { "left" : ( ( wd / 2 ) - ( n_wd / 2 ) )+"px" , "opacity" : 0.10 } ).show().animate ( { top : "20%" , opacity : 1.0 } , "normal" ) ;
	}

	function close_window ( divArea )
	{
		if ( !divArea )
		{
			$("#"+lastDiv).animate ( { top : "25%" , opacity : 0.10 } , "normal" , function ( )
																					{
																						$(this).hide();
																						$("#div_Background").hide ( ) ;
																					}
			 ) ;
		}
		else
		{
			$("#"+divArea).animate ( { top : "25%" , opacity : 0.10 } , "normal" , function ( )
																					{
																						$(this).hide();
																						$("#div_Background").hide ( ) ;
																					}
			 ) ;
		}
	}
