// JavaScript Document
function showImg(id,url){//办事大厅显示图片
	if(url==""){
		return;
	}
	var outPut = "";
	if(id=="bszn"){
		outPut = "<a href='"+url+"' target='_blank'><img height='16' src='/images/bs1.gif' width='16' border='0'></a>";
	}
	else if(id=="xgzc"){
		outPut = "<a href='"+url+"' target='_blank'><img height='16' src='/images/bs2.gif' width='16' border='0'></a>";
	}
	else if(id=="wstb"){
		outPut = "<a style='cursor:hand' onclick=\"javascript:window.open('"+url+"','download','width=376,height=280,scrollbars=yes,resizable=yes')\"><img height='16' src='/images/bs3.gif' width='16' border='0'></a>";
	}
	else if(id=="xgxz"){
		outPut = "<a style='cursor:hand' onclick=\"javascript:window.open('"+url+"','download','width=376,height=280,scrollbars=yes,resizable=yes')\"><img height='16' src='/images/bs4.gif' width='16' border='0'></a>";
	}
	document.write(outPut);
}
