function show_func(id)
{
	document.getElementById("div1").style.display = "none";
	//document.getElementById("div2").style.display = "none";
	document.getElementById("div3").style.display = "none";
	document.getElementById("div4").style.display = "none";
	document.getElementById("div5").style.display = "none";
	
	document.getElementById("div"+id).style.display = "";
	
}

function profile_func(id)
{
	document.rec_form.txtcamp.value = id;
	document.rec_form.submit();
}

function student_cart(id)
{
	document.rec_form.txtcamp.value = id;
	document.rec_form.action = 'student_cart.php';
	document.rec_form.submit();
}
function contact_manager(id)
{
	document.rec_form.txtcamp.value = id;
	document.rec_form.action = 'pro_contacmanager.php';
	document.rec_form.submit();
}
