function resizeImg(w)
{
	var imgs=document.images;
	for(var i=0;i<imgs.length;i++)
	{
		if(imgs[i].width>w)
		{
			var oW=imgs[i].width;
			var oH=imgs[i].height;
			imgs[i].width=w;
			imgs[i].height=oH*w/oW;
		}
	}
}

function recommend()
{
	copy(location.href,"已成功将该服务地址复制到剪贴板!现在您可以通过QQ,MSN或邮件推荐给朋友了!");
}

function bookmarkService()
{
	if(confirm("您确定要收藏该服务吗?"))
	{
		document.getElementById("link2").value=location.href;
		document.getElementById("s").click();
	}
}