function seller()
{
	document.getElementById('seller').style.display='block';
	document.getElementById('buyer').style.display='none';
	
	document.getElementById('options').style.display='none';
	
	document.getElementById('listingstitle').innerHTML = "Add A New Listing (Selling/Posting)";
}
function buyer()
{
	document.getElementById('seller').style.display='none';
	document.getElementById('buyer').style.display='block';
	
	document.getElementById('options').style.display='none';
	
	document.getElementById('listingstitle').innerHTML = "Add A New Listing (Looking For)";
}
function job(value)
{
	if(value == 1)
	{
		document.getElementById('price1').innerHTML = 'Pricing Information';
		document.getElementById('price2').innerHTML = 'Pricing Information';
		
		document.getElementById('location1').innerHTML = 'Please enter the location of the equipment:';
		document.getElementById('location2').innerHTML = 'Please enter the location of the equipment:';
	}		
	if(value == 2)
	{
		document.getElementById('price1').innerHTML = 'Pricing Information';
		document.getElementById('price2').innerHTML = 'Pricing Information';
		
		document.getElementById('location1').innerHTML = 'Please enter the location of the practice:';
		document.getElementById('location2').innerHTML = 'Please enter the location of the practice:';
	}		
	if(value == 3)
	{
		document.getElementById('price1').innerHTML = 'Salary/Pay Information';
		document.getElementById('price2').innerHTML = 'Salary/Pay Information';
		
		document.getElementById('location1').innerHTML = 'Please enter the location of the job:';
		document.getElementById('location2').innerHTML = 'Please enter the location of the job:';
	}
	if(value == 4)
	{
		document.getElementById('price1').innerHTML = 'Pricing Information';
		document.getElementById('price2').innerHTML = 'Pricing Information';
		
		document.getElementById('location1').innerHTML = 'Please enter the location of the inventory:';
		document.getElementById('location2').innerHTML = 'Please enter the location of the inventory:';
	}
}
function show(what)
{
	document.getElementById(what).style.display='block'
}

function hide(what)
{
	document.getElementById(what).style.display='none'
}
function agreed()
{
//	document.getElementById('agree1').checked=true;
//	document.getElementById('agree2').checked=true;
	document.getElementById('terms').style.display='none';
}