var sHead = 'http://';
var sSite = 'www.therecovery.com';
var sPage = '/index.php/swe/';

// Scrive testo
document.write('			<div id="layerHome">'
  + '				<p><strong>TheRecovery</strong></p>'
  + '				<p>The requested page has been moved to a new location.<br>'
  + '				The content is not updated. The new page will be displayed in 5 seconds.</p>'
  + '				<p><strong>If not automatically redirected</strong>, the content can be accessed by this <a href="' + sHead + sSite + sPage + '"> direct link</a>.</p>'
  + '			</div>'
  + '');

// Sposta
   location.replace(sHead + sSite + sPage);

