	function SetSize()
	{
		var outer = document.getElementById("outerframe");
		
		if (outer != null)
		{
			outer.style.width = (screen.width - 34) + "px";
			window.setTimeout(ResetAnchor, 10);
		}		
	}

	function ResetAnchor()
	{
		var anchor = window.location.hash;
		if (anchor != "")
		{
			window.location.hash = "";
			window.location.hash = anchor;
		}
	}	

	function LangPostBack() {
		var theForm1 = document.forms['form1'];
		if (!theForm1) {
		    theForm = document.form1;
		}

	    theForm1.submit();
	}

	function CoverImageError(source) {
		source.src = "./style/blankcover.gif";
		source.onerror = "";
		return true;
	}	
