function Redirect(httpref) {
	window.location=httpref;
}

function show(id) {
	document.getElementById('sub'+id).style.display='block';
}

function hide(id) {
	document.getElementById('sub'+id).style.display='none';
}

