function splash_resizer()
{
// resize splash image
		
	var x,y;
	if (self.innerHeight) // all except Explorer
	{
		x = self.innerWidth;
		y = self.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight)
	{// Explorer 6 Strict Mode
		x = document.documentElement.clientWidth;
		y = document.documentElement.clientHeight;
	}
	else if (document.body) // other Explorers
	{
		x = document.body.clientWidth;
		y = document.body.clientHeight;
	}


	if(x < 751) // width of splash image
	{
		w=751
		h=465
		r=x/751
		window.status=x
		rh = Math.round(h * r)
		document.splashpic.width = x-25;
		document.splashpic.height = rh;
		document.getElementById("splashpicdiv").style.width=(x-25)+"px"
		document.getElementById("splashpicdiv").style.height=rh+"px"
		document.getElementById("splashmail").style.width=x+"px"
	}
	else
	{
		document.splashpic.width = 751;
		document.splashpic.height = 465;
		document.getElementById("splashpicdiv").style.width=751+"px"
		document.getElementById("splashpicdiv").style.height=465+"px"
		document.getElementById("splashmail").style.width=751+"px"
	}
}