<style type="text/css">
<!--
#content{
position:absolute;top:0px;left:0px;text-align:center;
layer-background-color:#ffffff;background:#ffffff;
visibility:hide;visibility:hidden
}
#light{
position:absolute;top:-130px;left:0px;z-index:500
}
//-->
</style>

<script language="JavaScript">
<!-- Search Light by kurt.grigg@virgin.net

//This script featured on Website Abstraction
//Visit http://wsabstract.com

pre=new Image();
pre.src="spotlight.gif";
n4=(document.layers)?1:0;
ie=(document.all)?1:0;
d='document.';
a=(n4)?'':'all.';
s=(n4)?'':'.style';
var y,x,c,l,h,w;
enough=0;
(n4)?window.captureEvents(Event.MOUSEMOVE):0;
function Mouse(evnt){
if (enough==0){
y=(n4)?evnt.pageY-pre.height/2:document.body.scrollTop+event.y-pre.height/2;
x=(n4)?evnt.pageX-pre.width/2:document.body.scrollLeft+event.x-pre.width/2;
searchlight();
}
}
(n4)?window.onMouseMove=Mouse:document.onmousemove=Mouse;

function searchlight(){
c=eval(d+a+"content"+s);
l=(n4)?eval(d+a+"content"+s+"."+d+a+"light"+s):eval(d+a+"light"+s);
l.top=y;
l.left=x;
if (n4){
c.clip.top=y;
c.clip.right=l.left+pre.width;
c.clip.bottom=l.top+pre.height;
c.clip.left=x;
}
else c.clip="rect("+y+","+(x+pre.width)+","+(y+pre.height)+","+x+")";
h=(n4)?window.innerHeight:document.body.clientHeight;
w=(n4)?window.innerWidth:document.body.clientWidth;
c.visibility=(n4)?"show":"visible";
c.height=h;
c.width=w;
}

function reveal(){
l.visibility=(n4)?'hide':'hidden';
if (ie)document.body.style.cssText="overflow-x:hidden;overflow-y:scroll";
document.bgColor=(n4)?c.bgColor:c.background;
enough=1;
update();
}

function update(){
if (n4){
c.clip.top=0;c.clip.right=window.innerWidth;c.clip.bottom=window.innerHeight+window.pageYOffset;c.clip.left=0;
}
else
c.clip="rect(0,"+document.body.clientWidth+","+(document.body.clientHeight+document.body.scrollTop)+",0)";
setTimeout('update()',10);
}
document.write("</head><body bgcolor='#000000'><div id='content'>");
//The image map is not necessary but it stops the dotted link line in IE!
document.write("<div id='light'><img src="+pre.src+" useMap='#pic' border='0'>"
+"<map name='pic'><area shape=CIRCLE coords=65,65,63 href='javascript:reveal()'></map></div>");
if (ie) document.body.style.cssText="overflow-x:hidden;overflow-y:hidden";
//-->
</script>