// MOVING TOP BUTTON


function setVariables() {

imgwidth=18;  // logo width, in pixels

imgheight=18;  // logo height, in pixels

if (navigator.appName == "Netscape") {

horz=".left";

vert=".top";

docStyle="document.";

styleDoc="";

innerW="window.innerWidth";

innerH="window.innerHeight";

offsetX="window.pageXOffset";

offsetY="window.pageYOffset";

}

else {

horz=".pixelLeft";

vert=".pixelTop";

docStyle="";

styleDoc=".style";

innerW="document.body.clientWidth";

innerH="document.body.clientHeight";

offsetX="document.body.scrollLeft";

offsetY="document.body.scrollTop";
   
}

}

function checkLocation() {

objectXY="branding";

var availableX=eval(innerW);

var availableY=eval(innerH);

var currentX=eval(offsetX);

var currentY=eval(offsetY);

x=availableX-(imgwidth+30)+currentX;

y=availableY-(imgheight+25)+currentY;

evalMove();

setTimeout("checkLocation()",10);

}

function evalMove() {

eval(docStyle + objectXY + styleDoc + horz + "=" + x);

eval(docStyle + objectXY + styleDoc + vert + "=" + y);

}



// SEARCH BOX 
// Original:  Mike Hall (MHall75819@aol.com) 
// Web Site:  http://members.aol.com/MHall75819
// This script and many more are available free online at 
// The JavaScript Source!! http://javascript.internet.com 


var NS4 = (document.layers);

var IE4 = (document.all);


var win = this;

var n   = 0;


function findInPage(str) {

var txt, i, found;

if (str == "")

return false;

if (NS4) {

if (!win.find(str))

while(win.find(str, false, true))

n++;

else

n++;

if (n == 0) alert(str + " was not found on this page.");

}

if (IE4) {

txt = win.document.body.createTextRange();

for (i = 0; 
i <= n && (found = txt.findText(str)) != false; i++) {

txt.moveStart("character", 1);

txt.moveEnd("textedit");

}

if (found) {

txt.moveStart("character", -1);

txt.findText(str);

txt.select();

txt.scrollIntoView();

n++;

}

else {

if (n > 0) {

n = 0;

findInPage(str);

}
else

alert(str + " was not found on this page.");

}

}

return false;

}

//  End -->
