var xmlhttp;
var timerId = 0;
var op = 1;
function getPageFx()
{
url = "index1.htm";
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest()
xmlhttp.onreadystatechange=xmlhttpChange
xmlhttp.open("GET",url,true)
xmlhttp.send(null)
}
else
getPageIE();
}

function xmlhttpChange()
{
// if xmlhttp shows "loaded"
if (xmlhttp.readyState==4)
{
// if "OK"
if (xmlhttp.status==200)
{
if(timerId!=0)
window.clearTimeout(timerId);
timerId = window.setTimeout("trans();",100);
}
else
{
alert(xmlhttp.status)
}
}
}
function zero(){}

function trans(){

	document.getElementById('image').style.display='none';

/*
op -= .1;
document.body.style.opacity = op;
if(op<.1 )
{ 
	window.clearTimeout(timerId); 
	timerId = 0;
	window.location.href = "index1.htm"; 
	return;
	document.body.style.opacity =0.9;
}
 timerId = window.setTimeout("trans();",100);*/ } 
 
 function getPageIE(){ window.location.href = "index1.htm"; }


