/**
 * @author Administrator
 */
function Checkform(){
	if (document.form1.name.value=="" || document.form1.email.value=="")
		{
			alert("Please enter your name and email address");
			return false;
		}
}
function selectTab(sender,tabCount)
{
	//alert(tabCount);
	
	//reset all tabs
	for(var i=0;i<tabCount;i++)
	{
		document.getElementById('headingTab' + i).bgColor = '#000000';
		
	}
	//highlight selected
	sender.bgcolor = "#000000";
	
}

