var lusername	=location.search.split("&");
var lusernamea	=lusername[0].split("=")[1];
var lusernameb	=lusername[1].split("=")[1];
if(!lusernamea){
	lusernamea="5d5p.com";
}
else{
	lusernamea=unescape(lusernamea);
}
if(!lusernameb){
	lusernameb="最心爱的朋友";
}
else{
	lusernameb=unescape(lusernameb);
}

function check(obj){
	if (obj.stra.value.length>10) {
		alert('你的名字太长'); 
		return false;
	}
if (obj.strb.value.length>10) {
		alert('TA的称呼太长'); 
		return false;
	}
	if (obj.stra.value.length==0) {
		alert('还没填姓名呀'); 
		return false;
	}
	var url	="http://www.5d5p.com/user/wish.php"+"?stra="+escape(obj.stra.value)+"&strb="+escape(obj.strb.value);
	window.clipboardData.setData("Text",url);
	alert('网址已生成并替您复制好了，直接粘贴到QQ、MSN、邮箱就可以了\n\n 您的朋友一定会很惊喜，快快发送吧！');
	window.location.replace(url);
	return false;
}
