
	var param=new Array("雪花","风声","海阔天空","生日快乐","手机","笔记本");
	with(Math)
	{
		var num=floor(random()*5);
	}
	document.getElementById("q").value=param[num];
function send_request()
	{
		var rq = null;
		try{
			rq =new XMLHttpRequest();
		}
		catch(e)
		{
			try{
				rq = new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch(e)
			{
				try{
					rq = new ActiveXObject("Microsoft.XMLHTTP");
				}
				catch(e)
				{
				
				}
			}
		}
		return rq;
	}
	