
function popUnder()
{
	var area = document.getElementById('submitSpace');
	if(area.style.display=="inline")
	{
		area.style.display = "none";
	}
	else
	{
		area.style.display = "inline";
	}
}

function popComm(which)
{
	var area = document.getElementById('comments'+which);
	if(area.style.display=="inline")
	{
		area.style.display = "none";
	}
	else
	{
		area.style.display = "inline";
	}
}

function writeComm()
{
	if(document.comsubform.comment.value=="")
	{
		document.comsubform.comment.color='#555555';
		document.comsubform.comment.value="Your Comment (less than 200 characters)";
	}
}

function writeName()
{
	if(document.comsubform.name.value=="")
	{
		document.comsubform.name.color='#555555';
		document.comsubform.name.value="Your name";
	}
}

function clearComm()
{
	if(document.comsubform.comm.value=="Your Comment (less than 200 characters)")
	{
		document.comsubform.comm.color='#000000';
		document.comsubform.comm.value="";
	}
}

function clearName()
{
	if(document.comsubform.name.value=="Your name")
	{
		document.comsubform.name.color='#000000';
		document.comsubform.name.value="";
	}
}