/*
* Used while pagination
*/
public static function renderProcessPage($id, $refreshUrl, $countInfo = '')
{
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">' . "\n";
echo '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-en" lang="en-en" dir="ltr" >' . "\n";
echo '<head>' . "\n";
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />' . "\n\n";
echo '<title>' . Text::_('COM_PHOCAGALLERY_PICASA_LOADING_DATA') . '</title>' . "\n";
echo '<link rel="stylesheet" href="' . Uri::root(true) . '/media/com_phocagallery/css/administrator/phocagallery.css" type="text/css" />';
echo '</head>' . "\n";
echo '<body>' . "\n";
echo '<div style="text-align:right;padding:10px"><a style="font-family: sans-serif, Arial;font-weight:bold;color:#fc0000;font-size:14px;" href="/apis/component/phocagallery/?task=phocagalleryc.edit&id='%20.%20(int)%20$id%20.%20'">' . Text::_('COM_PHOCAGALLERY_STOP_LOADING_PICASA_IMAGES') . '</a></div>';
echo '<div id="loading-ext-img-processp" style="font-family: sans-serif, Arial;font-weight:normal;color:#666;font-size:14px;padding:10px"><div class="loading"><div><center>' . HTMLHelper::_('image', 'media/com_phocagallery/images/administrator/icon-loading.gif', Text::_('COM_PHOCAGALLERY_LOADING')) . '</center></div><div> </div><div><center>' . Text::_('COM_PHOCAGALLERY_PICASA_LOADING_DATA') . '</center></div>';
echo $countInfo;
echo '</div></div>';
echo '<meta http-equiv="refresh" content="1;url=' . $refreshUrl . '" />';
echo '</body></html>';
exit;
}