// Simple Browser Check
var ns4 = (document.layers) ? 1 : 0;
var ie4 = (document.all) ? 1 : 0;
var ns6 = (document.getElementById && !document.all) ? 1 : 0;
var ns7 = (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)	bttlf="document.all['bttf'].style";
if(ns4) bttlf="document.layers['bttf']";
if(ns6) bttlf="document.getElementById('bttf').style";
if(ns7) bttlf="document.getElementById('bttf').style";
// Draw Bak2Top Link
function choose(){
rt = (!ns4) ? '<div id="bttf" style="position:absolute;">' : '<layer name="bttf">';

// rt += '<table width="25" border="1" bordercolor="#000000" cellpadding="2" cellspacing=0 <tr><td align="center" bgcolor="#ffcc00" >';
rt += '<table width="65"  td height="65"  border="0" bordercolor="#000000" cellpadding="8" cellspacing="0"<tr><td align="center" valign="center" background="navi_images/ball.gif">';
rt += '<FONT SIZE=2><a STYLE="text-decoration:none" href="home.html">';

rt += 'choose'+'\r'+'country'+'\r'+'to visit';

rt += '</a></td></tr></table>';
rt += (!ns4) ? '</div>' : '</layer>';
document.write(rt);
mchoose();
}

// Move It To Bottom Right Corner
function mchoose(){
obj=eval(bttlf);
obj.left=winWid()- 90;
obj.top=winHei()-70 +winOfy();
setTimeout('mchoose()',0);
}

// Make It So...
choose();
