function fixLoginStyle ()
{
	// if DNN displays a message that results from login, the login box has to show itself.
	var obj=$('dnn_loginPane');
	if (obj!=null)
	{
		var arr=YAHOO.util.Dom.getElementsByClassName("rbcontent",null,obj);
		if (arr.length==1)
		{
			var arr2=YAHOO.util.Dom.getElementsBy(function () { return true ; },"hr",arr[0]);
			if (arr2.length>0)
			{
					var targetEl=$("hploginform");
					targetEl.style.display = "block";
					targetEl.style.overflow = "hidden";
					targetEl.style.position = "relative";
			}
		}
	}


}


YAHOO.util.Event.addListener(window, "load", fixLoginStyle);