<!--FULLSCREEN-->
i = parent.frames.length;
top.window.moveTo(0,0);
top.window.resizeTo(screen.availWidth,screen.availHeight);
if (document.all && !(navigator.userAgent.indexOf('Opera') != -1) || (!navigator.userAgent.indexOf("Netscape")<0))
x = (window.document.body.clientWidth/2)-390;
else
x = (window.innerWidth/2)-390;
if(x<0)x=0;
xtit=x+90;
xlog=x+17;
xtab=x+780;

if (top.frames.length!=0) top.location=self.document.location;

if (parent.frames.length > 0)
{
window.top.location.href = location.href;
}
	
if (window != top) {top.location=window.location;}
<!--DETECTION-->
<!--SUBSTRING-->
var Count = 0;
var Text = "LA BORIE HAUTE, LOCATION OF COTTAGES IN TRÉMOLAT, DORDOGNE - PÉRIGORD © CRÉATION LAMBERT 2007";
var Speed = 90;
var timerID = null;
var TimerRunning = false;

var i = 0;
while (i ++ < 140)
Text = " " + Text;

function Scroll(){
window.status = Text.substring(Count++, Text.length);
if (Count == Text.length)
Count = 0;
timerID = setTimeout("Scroll()", Speed);
TimerRunning = true;
}

function Start(){
Stop();
Scroll();
}

function Stop(){
if(TimerRunning)
clearTimeout(timerID);
TimerRunning = false;
}

Start(); 

