// JavaScript Document
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}



/**************************
函数名：RuiminImg
功　能：图片带边框
参　数：img ---图片地址
		url ---要展示的地址
		alt ---图片说明
返回值：无
**************************/
function RuiminImg(img, url, alt, Imgwidth, Imgheight) {
	with(document) {
		write("<table class='RuiminImg'>");
		write("<tr><td>");
		write("<a href='");
		write(url);
		write("' target='_blank'>");
		write("<img src='");
		write(img);
		write("' width='"+Imgwidth+"'")
		write("' height='"+Imgheight+"'")
		if ( alt != null ) {
			write(" title='"+alt+"'");
		}
		write(" ></a></td></tr></table>");
	}
}

