// JavaScript Document

function showsub(id) {
		$(id).style.display = 'block';
}

function hidesub(id) {
		$(id).style.display = 'none';
}

