function add_cat()
{
	if(document.getElementById("en_cat_name").value=="")
		alert("Please ener the category name");
	else if(document.getElementById("cat_perma").value=="")
		alert("Please ener the category perma");
	else
		document.form_addcat.submit();	
}

function control_panel()
{
	if(!checkemail(document.getElementById("from_admin_eid").value))
	{
		alert("enter a valid email address for From-admin-email");
	}	
	else
		document.form_cpanel.submit();
	
}

function post_ad()
{
	
	document.form_post_ad.submit();
}