function rd() {
	var dw,dh,ww,wh,o=document.getElementById('redir');
/*	w=o.style.width;
	h=o.style.height;*/
	dw=320;
	dh=116;
	if (self.innerWidth) {
		ww=self.innerWidth;
		wh=self.innerHeight;
	} else if (document.documentElement && document.documentElement.clientWidth) {
		ww=document.documentElement.clientWidth;
		wh=document.documentElement.clientHeight;
	} else if (document.body) {
		ww=document.body.clientWidth;
		wh=document.body.clientHeight;
	}
	o.style.left=Math.round((ww/2)-(dw/2));
	o.style.top=Math.round((wh/2)-(dh/2));
	o.style.display='block';
}
function rdc() {
	document.getElementById('redir').style.display='none';
}
function rdm() {
	document.getElementById('redir').style.cursor='pointer';
}
function rdr() {
	document.getElementById('redir').style.cursor='default';
}

