/*NOT TEST*/
function overlay_class()
{
	var id;
	var obj;

	this.id="overlay";
}
overlay_class.prototype={
	show : function()
	{
		var DIV_OBJ=new dom_class();
		this.obj=DIV_OBJ.create_or_get(this.id,"div");
		this.obj.style.display="block";
		BRAUSER_OBJ.set();
		this.obj.style.height=BRAUSER_OBJ.screen_height+BRAUSER_OBJ.get_scroll_top()+"px";
		this.obj.style.width=1024+"px";//BRAUSER_OBJ.screen_width;
		HTML_OBJ.Body.appendChild(this.obj);
		
	},
	hide : function(){HTML_OBJ.destroy(this.id);}
}


