﻿function RunScripts()
{
    //PlaceErrorReportBar();  
}
function PlaceErrorReportBar()
{
	try
	{
		var rightHeight = document.getElementById('rightBar').offsetHeight;
		var rightPosition = document.getElementById('rightBar').style.top;
		rightHeight += 15;
		document.getElementById('errorReportBar').style.top = rightHeight + rightPosition +  'px';
	}
	catch (err) {}
}
function load() {
   Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
}
