function scrtfun(curForm)
{
	scrt = curForm.secret;
	scrt.value = screen.width;
	scrt.value = scrt.value + "x" + screen.height;
	if (navigator.appName == "Netscape")
	{
		scrt.value = scrt.value + "x" + screen.pixelDepth;
	}
	else
	{
		scrt.value = scrt.value + "x" + screen.colorDepth;
	}
	scrt.value = scrt.value + " - " + navigator.userAgent;
	var regexp = /'/
	curForm.name.value = curForm.name.value.replace(regexp, "’")
	curForm.subject.value = curForm.subject.value.replace(regexp, "’")

	curForm.submit()
}

function quoteynwhoah()
{
	document.wwwpost.body.value = document.wwwpost.body.value + document.wwwpost.origcontent.value
	setTimeout("document.wwwpost.quote.checked=false", 1000)
}

function bodyclear()
{
	document.wwwpost.body.value = ""
	setTimeout("document.wwwpost.erase.checked=false", 1000)
}

function transferbody()
{
	document.wwwpost.origcontent.value = document.wwwpost.body.value
	document.wwwpost.body.value = ""
}