/* Redirect To Homepage */
var url = document.URL;
var address = url.toLowerCase();
var index = new RegExp('index');
var po = document.getElementById('pageOverlay');
	if (address.match('index.php')) {
		// do nothing!
		} else { 
		po.style.display='block';
		po.style.width='1000px';
		po.style.height=screen.height;
		po.style.padding='10px';
		po.style.margin='0px auto 0px auto';
		po.style.textAlign='center';
		po.style.color='#999999';
		po.innerHTML='Loading...';
		setTimeout('top.location.href=(\'index.php\')', 3000);
		}
