function gotopree()
{
	var tag = "Y"
	if (tag=="Y" & document.gbookform.contentinfo.value == "内容：请留下你对中国广播网互动活动有什么样的意见和建议，如果你的建议被采用，将会获得中国广播网送出的意外惊喜") {
		alert('请您填写您的内容!');
		tag = "N"
	}
	if (tag=="Y" & document.gbookform.contentinfo.value.length ==0 ) {
		alert('请您填写留言内容!');
		tag = "N"
	} else {
		if(document.gbookform.contentinfo.value.length > 200){
			alert('您最多留言200个字!');
			tag = "N";
		}
	}
	if (tag=="Y")
	{
		document.gbookform.submit();
        document.gbookform.contentinfo.value="";
	}	
	
}

function clrarea()
{
        document.gbookform.contentinfo.value="";
}
function clrfrom()
{
        document.gbookform.reset();
}
