// Simple Browser Check
var ns4 = (document.layers) ? 1 : 0;
var ie4 = (document.all) ? 1 : 0;
var ns6 = (document.getElementById && !document.all) ? 1 : 0;

// Browser Window Dimensions
function winWid(){ return (ns4||ns6) ? window.innerWidth : document.body.clientWidth; }
function winHei(){ return (ns4||ns6) ? window.innerHeight : document.body.clientHeight; }

// Browser Window OffSets
function winOfy(){ return (ns4||ns6) ? window.pageYOffset : document.body.scrollTop; }

// SetUp Browser Layer Control
if(ie4)	bttll="document.all['bttl'].style";
if(ns4) bttll="document.layers['bttl']";
if(ns6) bttll="document.getElementById('bttl').style";

// Draw Bak2Top Link
function toplink(){
rt = (!ns4) ? '<div id="bttl" style="position:absolute;float:left;">' : '<layer name="bttl">';
rt += '<table  border="0"><tr><td align="center">';
rt += '<a href="http://www.villasespagnolas.com/contact.php" ><font color="#ff8901" face="verdana" size="2"><b>';
rt += 'Enquire';
rt += '</b></font></a></td></tr></table>';
rt += (!ns4) ? '</div>' : '</layer>';
document.write(rt);
mtoplink();
}

// Move It To Bottom Right Corner
function mtoplink(){
obj100=eval(bttll);
obj100.left=winWid()-90;
obj100.top=winHei()-30+winOfy();
setTimeout('mtoplink()',3000);
}

// Make It So...
toplink();