function AdminRedirect () {
  setTimeout ("window.parent.location='admin-main.php?a=main';", 3000);
	
}
function Redirect () {
  setTimeout ("window.parent.location='index.php';", 3000);
	
}

function showDiv() {
	if (document.getElementById) { // DOM3 = IE5, NS6
	document.getElementById('hideshow').style.visibility = 'visible';
	document.getElementById('img').src = './style/img/hide_img.png';
	document.getElementById('ashow').href = 'javascript:HideDiv()';
	}
	else {
	if (document.layers) { // Netscape 4
	document.hideshow.visibility = 'visible';
	document.img.src = './style/img/hide_img.png';
	document.ashow.href= 'javascript:HideDiv()';
	}
	else { // IE 4
	document.all.hideshow.style.visibility = 'visible';
	document.all.img.src = './style/img/hide_img.png';
	document.all.ashow.href = 'javascript:HideDiv()';
	
	}
	}
	}; 

function HideDiv() {
		if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById('hideshow').style.visibility = 'hidden';
		document.getElementById('img').src = './style/img/show_img.png';
		document.getElementById('ashow').href = 'javascript:showDiv()';
		}
		else {
		if (document.layers) { // Netscape 4
		document.hideshow.visibility = 'hidden';
		document.img.src = './style/img/show_img.png';
		document.ashow.href= 'javascript:showDiv()';
		}
		else { // IE 4
		document.all.hideshow.style.visibility = 'hidden';
		document.all.img.src = './style/img/show_img.png';
		document.all.ashow.href = 'javascript:showDiv()';
		
		}
		}
		}; 

