var noiseOpacityBox = new function noiseOpacityBoxClass()
{
	var _this = this;
	this.open = function()
	{
		var url = "./includes/openbox.html";
		
		$("body").append('<div class="washout" style="height:' + $("body").height() + 'px;">&nbsp;</div>');
		$("body").append('<div class="noiseOpacityBox"><iframe src="' + url + '" frameborder="0" scrolling="no" id="boxframe" name="boxframe"></iframe></div>');
		$(".noiseOpacityBox").show();
	};
	this.close = function()
	{
		$(".washout").fadeOut(500, function() { $(".washout").remove(); });
		$(".noiseOpacityBox").fadeOut(500, function() { $("#boxframe").remove(); $(".noiseOpacityBox").remove(); });
	};
}
