it looks like it may be this part of the script..
<DIV id=overDiv style="POSITION: absolute; VISIBILITY: hidden; Z-INDEX: 1000"></DIV>
<SCRIPT language=JavaScript ID='PlayerScript'>
PlayerScript.src = "
</SCRIPT>
in which calls this from there cgi...
// Flushing: /sites/eyegrab.com/htdocs/flash.animations/7.swf
var layerFrame = self;
var layerInitialized = 0;
var layerObject = null;
var animation = null;
// Decide browser version
var ns4 = ((document.layers)) ? true : false;
var ns6 = ((document.getElementById)) ? true : false;
var ie4 = ((document.all)) ? true : false;
var ie5 = false;
// Microsoft Stupidity Check(tm).
if (ie4){
if (navigator.userAgent.indexOf('MSIE 5')>0){
ie5 = true;
}
if (ns6){
ns6 = false;
}
}
function showFlashAnimation(animationHttpPath,
mouseX,
mouseY,
animationWidth,
animationHeight,
transparent){
htmlText = "<embed ";
htmlText += " name='flash_animation'";
htmlText += " src='0.swf'";
htmlText += " quality='high' "
htmlText += " pluginspage='
";
htmlText += " type='application/x-shockwave-flash' "
htmlText += " width='" + animationWidth + "'";
htmlText += " height='" + animationHeight + "'";
if (transparent == true){
htmlText += " wmode='transparent' ";
}
else{
htmlText += " wmode='opaque' ";
}
htmlText += " menu='false' ";
htmlText += " bgcolor='undefined'>";
htmlText += "</embed>";
return showLayer(htmlText,mouseX,mouseY);
}
function showLayer(htmlText,mouseX,mouseY){
// Special for frame support
if ( (ns4) || (ie4) || (ns6) ){
if (ns4) layerObject = layerFrame.document.overDiv
if (ie4) layerObject = layerFrame.overDiv.style
if (ns6) layerObject = layerFrame.document.getElementById("overDiv"

;
}
layerWrite(htmlText);
flash_animation.src = animation.src;
if (layerInitialized != 0){
hideLayer();
}
layerInitialized = 0;
// Show layer
if ( (ns4) || (ie4) || (ns6) ){
if (layerInitialized == 0){
if ( (ns4) || (ie4) ){
layerObject.left = mouseX;
layerObject.top = mouseY;
layerObject.width = '100%';
layerObject.height = '100%';
}
else if (ns6){
layerObject.style.left = mouseX + "px";
layerObject.style.top = mouseY + "px";
layerObject.style.width = '100%';
layerObject.style.height = '100%';
}
// Show object
if (ns4){
layerObject.visibility = "show";
}
else if (ie4){
layerObject.visibility = "visible";
}
else if (ns6){
layerObject.style.visibility = "visible";
}
layerInitialized = 1;
}
}
}
function layerWrite(txt){
txt += "\n";
if (ns4){
var lyr = layerFrame.document.overDiv.document
lyr.write(txt)
lyr.close()
}
else if (ie4){
layerFrame.document.all["overDiv"].innerHTML = txt
}
else if (ns6){
range = layerFrame.document.createRange();
range.setStartBefore(over);
domfrag = range.createContextualFragment(txt);
while (layerObjecthasChildNodes()) {
layerObjectremoveChild(layerObjectlastChild);
}
layerObjectappendChild(domfrag);
}
}
function hideLayer(){
if ( (ns4) || (ie4) || (ns6) ){
layerInitialized = 0;
if (layerObject!= null){
// Hide object
if (ns4){
layerObject.visibility = "hide";
}
else if (ie4){
layerObject.visibility = "hidden";
}
else if (ns6){
layerObject.style.visibility = "hidden";
}
self.status = "";
// Hide object end
}
}
}
var waitForStart = false;
function startFlashAnimation(){
if (document.readyState == 'complete'){
if (waitForStart == false){
waitForStart = true;
window.setTimeout("startFlashAnimation()",2000);
}
else{
animation = new Image();
animation.src = "
showFlashAnimation('
'0',
'0',
'800',
'500',
true);
if (0 > 0){
window.setTimeout("hideLayer()",0);
}
}
}
else{
if (ns4 || ns6){
document.readyState = 'complete';
setTimeout("startFlashAnimation()",1500);
}
else{
setTimeout("startFlashAnimation()",100);
}
}
}
startFlashAnimation();
carlsatterwhite@endangeredgraphics.com