function showForm(Brochure_id)
{
	document.getElementById('dlform').style.visibility = 'visible';
	document.getElementById('dlform').style.display = 'block';
	document.getElementById('common_brochure').style.visibility = 'hidden';
	document.getElementById('common_brochure').style.display = 'none';
	//document.frm['brochure_id'].value = Brochure_id;
	document.frm.elements['brochure_id'].value = Brochure_id;
}
function unshowForm()
{
	document.getElementById('dlform').style.visibility = 'hidden';
	document.getElementById('dlform').style.display = 'none';
	document.getElementById('common_brochure').style.visibility = 'visible';
	document.getElementById('common_brochure').style.display = 'block';
}