function showadsBannr() {
	document.getElementById('ads').style.display  = 'block';
}

function hideBannr() {
	document.getElementById('ads').style.display  = 'none';
}

function showForm() {
	document.getElementById('form').style.display  = 'block';
}

function hideForm() {
	document.getElementById('form').style.display  = 'none';
}


