// -----------------------
// Ajax function to load the fullsize image specified.
// -----------------------
function LoadImage( id )
{
	if ( document.getElementById( "PageSections" ) )
	{
		document.getElementById( "PageSections" ).innerHTML = DesignLibraryPage.LoadImage( id ).value;
	}
}

// ------------------------
// Ajax function to reload the section area as previously loaded.
// ------------------------
function ReloadSections()
{
   if ( document.getElementById( "PageSections" ) )
   {
      document.getElementById( "PageSections" ).innerHTML = DesignLibraryPage.ReloadSections().value;
      //alert ( document.getElementById( "PageSections" ).innerHTML );
   }
}