function recommend(){
	window.open('http://61.131.4.187/recommend/recommend.php?strUrl='+window.location.href,'frmFjrxSendto','height=323,width=390,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no, status=no');
}


// 函数作者：凌燕明（lingym@fjii.com）
// 函数说明：对页面内超过指定宽度的图片进行缩放。
// 参数说明：nWidth（指定宽度：如图片超过该尺寸，则缩小到该尺寸，否则不变。）
//			 strType（图片类型：all（页面内所有图片）；str（名称为指定strName的图片）；arr（名称为指定前缀strName的图片））
//			 strName（图片名称：strType==all时该参数无效；strType=str时该参数为指定图片名称；strType=arr时该参数为指定图片名称前缀）
// 使用方法：<body onLoad="javascript:ReImgSize(500, 'arr', 'imgname');">
// 创建时间：2005-12-12 9:08
function resizeImg(nWidth, strType, strName){	
	if (nWidth == null || nWidth == 0) {
		nWidth = 500;	
	}
	if (strType == null) {
		strType = 'all';	
	}

	switch (strType) {
		case 'all':						// 对所有图片元素作用
			for (i=0; i<document.images.length; i++) {
				if (document.images[i].width > nWidth) {
			 		document.images[i].width = nWidth;
			  	}
			}			
			break;
		case 'str':						// 对指定名称图片元素作用
			if (document.images[strName]!=null && document.images[strName].width > nWidth) {	// 作用范围：指定名称的图片元素
				 document.images[strName].width = nWidth;
			}	
			break;
		case 'arr':						// 对指定前缀名称（具体名称为：指定前缀+ID（0开始））的所有图片元素作用
			var strTempName = '';
			for (i=0; i<document.images.length; i++) {
				strTempName = strName + i;	
				if (document.images[strTempName]!=null && document.images[strTempName].width > nWidth) {
			 		document.images[strTempName].width = nWidth;
			  	}
			}	
			break;
	}
}