28544471b94a26c679bef901adfcda25af7a4465.svn-base 86 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/WEB-INF/views/include/taglib.jsp"%>
<html>
<head>
	<title>受理申请管理</title>
	<meta name="decorator" content="default"/>
	<script type="text/javascript" src="${ctxStatic}/base64/base64.js"></script>
	<script type="text/javascript" src="${ctxStatic}/base64/js_pop.min.js"></script>
	<script type="text/javascript">
		$(document).ready(function() {
			$("#name").focus();
			$("#inputForm").validate({
				submitHandler: function(form){ 
					loading('正在提交,请稍等...');
					form.submit();
				},
				errorContainer: "#messageBox",
				errorPlacement: function(error, element) {
					$("#messageBox").text("输入有误,请先更正。");
					if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".inputqing-append")){
						error.appendTo(element.parent().parent());
					} else {
						error.insertAfter(element);
					}
				}
			});
		});
		
		$(function(){
			//此方法用来解决iframe高度自适应的问题; 
		    $("#mortgageframe").load(function(){         
		        $(this).height($(this).contents().find("#contentTable").height() + 120);  
		    });
		    $("#qlrframe").load(function(){         
		        $(this).height($(this).contents().find("#contentTable").height() + 80);  
		    });
		    $("#gmframe").load(function(){         
		        $(this).height($(this).contents().find("#contentTable").height() + 80);  
		    });
		    $("#firstframe").load(function(){         
		        $(this).height($(this).contents().find("#contentTable").height() + 80);  
		    });
		    $("#sjframe").load(function(){         
		        $(this).height($(this).contents().find("#contentTable").height() + 80);  
		    });
		    $("#gjzwframe").load(function(){
		        $(this).height($(this).contents().find("#contentTable").height() + 140);  
		    });
		    $("#ygdjframe").load(function(){
		        $(this).height($(this).contents().find("#contentTable").height() + 150);  
		    });
		    $("#dyaqframe").load(function(){         
		        $(this).height($(this).contents().find("#contentTable").height() + 140);  
		    });
		    $("#zyygdjframe").load(function(){
		        $(this).height($(this).contents().find("#contentTable").height() + 100);  
		    });
		    $("#bgforenoticeframe").load(function(){
		        $(this).height($(this).contents().find("#bgforenoticeframe").height() + 140);  
		    });
		    $("#hbmergerbeforeframe").load(function(){       
		        $(this).height($(this).contents().find("#hbmergerbeforeframe").height() + 180);  
		    });
		    $("#hbforenoticeframe").load(function(){       
		        $(this).height($(this).contents().find("#hbforenoticeframe").height() + 180);  
		    });
		    $("#forenoticeframe").load(function(){       
		        $(this).height($(this).contents().find("#forenoticeframe").height() + 220);  
		    });
		    $("#szlx1").hide();
		});
		
		function winOpen() { 
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/base/regBaseXm/list?zchinfo=1","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
		}
		
		function qlrwinOpen() {
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/bus/regBusQlr/form?ywh=${YWH}&YSDM=${YSDM}","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
		}
		function sjwinOpen() { 
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/bus/regBusSjmain/form?ywh=${regBusSlsq.ywh}&YSDM=6004030000&SLSJ=${regBusSlsq.slsj}","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");		
		}
		
		function gyjsydsyqwinOpen(){
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/bus/regBusJsydsyq/form?ywh=${regBusSlsq.ywh}&YSDM=6002020100","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
		}
		
		function jtjsydsyqwinOpen(){
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/bus/regBusJsydsyq/form?ywh=${regBusSlsq.ywh}&YSDM=2002020200","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");	
		}
		
		function zjdjsydsyqwinOpen(){
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/bus/regBusJsydsyq/form?ywh=${regBusSlsq.ywh}&YSDM=2002020300","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
		}
		
		function tdsyqwinOpen(){
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/bus/regBusTdsyq/form?ywh=${regBusSlsq.ywh}&YSDM=6002010120","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
		}
		
		function dyaqwinOpen(){
			//弹出窗口的宽度; 
			var iWidth=1100; 
			//弹出窗口的高度;
	       	var iHeight=600;
	       	//获得窗口的垂直位置 
	       	var iTop = (window.screen.height - 30 - iHeight) / 2;
	       	//获得窗口的水平位置 
	       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
			window.open("${ctx}/reg/bus/regBusDyaq/form?ywh=${regBusSlsq.ywh}&YSDM=2002030100","newwindow",
					"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
		}
		
	   function loadChoiceOneRegedinfo(){
		   var regedInfoType = "${regBusSlsq.djxl}";
		   var ywh = "${regBusSlsq.ywh}"
			if(regedInfoType == "209" || regedInfoType == "507"){
				//土地抵押 土地注销抵押 填充 
				$.ajax({
					type:"POST", //请求方式 
					url:"${ctx}/reg/bus/regBusBdcqzsdjxx/regLandCard", //请求路径 
					cache: false,   //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。 
					data:"ywh=${regBusSlsq.ywh}",  //传参 
					async : false,  //同步处理 
					dataType: "html",   //返回值类型       使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好 
					success:function(data){
						$("#reg_bzinfo").html(data);
					}
				}); 
			}else if(regedInfoType =="416"){
				//房屋更名 be93cb80103f4b17adcca8fc9317cdfa  gmregHousesCard
				$.ajax({
					type:"POST", //请求方式 
					url:"${ctx}/reg/bus/regBusBdcqzsdjxx/fwchoiceOneRegedInfoSxbg", //请求路径 
					cache: false,   //(默认: true,dataType为script和jsonp时默认为false) jQuery 1.2 新功能,设置为 false 将不缓存此页面。 
					data:"ywh="+ywh,  //传参 
					async : false,  //同步处理
					dataType: "html",   //返回值类型       使用json的话也可以,但是需要在JS中编写迭代的html代码,如果格式样式复杂的话还是用html返回类型好 
					success:function(data){
						document.getElementById('reg_bzinfo').innerHTML = data;
					}
				});
			}
		}
		   
			function reloadChoicedFwInfo(){
				var regedInfoType = "${regBusSlsq.djxl}";
				if(regedInfoType == "207"){
					$.ajax({
						url:"${ctx}/reg/base/regBaseC/listChoicedFwInfoToSlsq",
						data: { "ywh": "${regBusSlsq.ywh}" },
						cache: false,
					    type: "POST",
					    dataType: "html",
						success: function (data) {
							//房屋信息返回到受理申请页面 
							document.getElementById('choicedFwInfo').innerHTML = data;
						}
					});
				}else if(regedInfoType == "806"){
					alert(1);
					$.ajax({
						url:"${ctx}/reg/base/regBaseC/oneChoicedFwInfoToSlsq",
						data: { "ywh": "${regBusSlsq.ywh}" },
						cache: false,
					    type: "POST",
					    dataType: "html",
						success: function (data) {
							//房屋信息返回到受理申请页面 
							document.getElementById('choicedFwInfo').innerHTML = data;
						}
					});
				}
			} 
			function printgdInfo(){
				//弹出窗口的宽度; 
				var iWidth=1100; 
				//弹出窗口的高度;
		       	var iHeight=600;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	var url =  "${ctx}/reg/bus/regBusGd/printGd?ywh=${regBusSlsq.ywh}";
		       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
			}
			function openPrintView(){
				var id = $("#BdcqzsdjxxID").html();
				if(id == 'undefined' || id == null){ id = ""; }
				//弹出窗口的宽度; 
				var iWidth=500; 
				//弹出窗口的高度;
		       	var iHeight=250;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/printView?ywh=${regBusSlsq.ywh}&BdcqzsdjxxID="+id;
		       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
			}
			
			function openPrintSlsqView(){
				var regedInfoType = "${regBusSlsq.djxl}";
				//弹出窗口的宽度; 
				var iWidth=950; 
				//弹出窗口的高度;
		       	var iHeight=1000;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/printViewSqspb?&ywh=${regBusSlsq.ywh}&djlx="+regedInfoType;
		       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
			}
			
			function allPrint(){
				var regedInfoType = "${regBusSlsq.djxl}";
				//弹出窗口的宽度; 
				var iWidth=1100; 
				//弹出窗口的高度;
		       	var iHeight=600;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/openHouseAll?ywh=${regBusSlsq.ywh}&djlx="+regedInfoType;
		       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
			}
			
			function openHouseView(){
				var regedInfoType = "${regBusSlsq.djxl}";
				//弹出窗口的宽度; 
				var iWidth=1100; 
				//弹出窗口的高度;
		       	var iHeight=600;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/openHouseView?ywh=${regBusSlsq.ywh}&DJLX="+regedInfoType;
		       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
			}
			
			function printHousejfView(){
				//弹出窗口的宽度; 
				var iWidth=500; 
				//弹出窗口的高度;
		       	var iHeight=250;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	$.ajax({ 
					type:"POST",
					url:"${ctx}/reg/bus/regBusSf/isnotsfed", 
					cache: false,
					data:"YWH=${regBusSlsq.ywh}",
				    async : false,
					success:function(modelmap){
						var isnotsfed = modelmap.data;
						if(isnotsfed == "0"){
							alert("没有收费维护,请先维护收费信息再打印!");
							return;
						}else{
					       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/printHousejfView?ywh=${regBusSlsq.ywh}";
					       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
						}
					}
				});
			}
			
			function openPrintFssrskView(){
				//弹出窗口的宽度; 
				var iWidth=1000; 
				//弹出窗口的高度;
		       	var iHeight=800;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	$.ajax({ 
					type:"POST",
					url:"${ctx}/reg/bus/regBusSf/isnotsfed", 
					cache: false,
					data:"YWH=${regBusSlsq.ywh}",
				    async : false,
					success:function(modelmap){
						var isnotsfed = modelmap.data;
						if(isnotsfed == "0"){
							alert("没有收费维护,请先维护收费信息再打印!");
							return;
						}else{
					       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/printFssrskView?ywh=${regBusSlsq.ywh}";
					       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=no, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
						}
					}
				});
			}
			
			function openGroundView(){
				var regedInfoType = "${regBusSlsq.djxl}";
				//弹出窗口的宽度; 
				var iWidth=1100; 
				//弹出窗口的高度;
		       	var iHeight=600;
		       	//获得窗口的垂直位置 
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	//获得窗口的水平位置 
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
		       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/openGroundView?ywh=${regBusSlsq.ywh}&DJLX="+regedInfoType;
		       	window.open(url, "窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
			}
			
			function winOpenChoicedHInfo(id){
				var iWidth=1100; 
		       	var iHeight=600;
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
				window.open("${ctx}/reg/base/regBaseH/form?id="+ id +"&VIEWS=1","chiocedHInfoWindow",
						"height="+ iHeight +",width="+ iWidth +",top="+ iTop +",left="+ iLeft +",toolbar=no,menubar=no,scrollbars=yes, resizable=no,location=no, status=no");
			}
			
			function openCertificatePrint(szlx){
	    	  	var iWidth=1100; 
		       	var iHeight=600;
		       	var iTop = (window.screen.height - 30 - iHeight) / 2;
		       	var iLeft = (window.screen.width - 10 - iWidth) / 2;
	    	  	//点击打印之前,检查缮证入口是否维护 
				$.ajax({ 
					type:"POST",
					url:"${ctx}/reg/bus/regBusSz/isnotszed", 
					cache: false,
					data:"YWH=${YWH}&szlx="+szlx,
				    async : false,
					success:function(modelmap){
						var isnotszed = modelmap.data;
						var flag = modelmap.flag;
						if(isnotszed == "0"){
							alert("没有缮证维护,请先维护缮证信息再打印!");
							return;
						}else{
							if(flag == '1'){
								if(szlx == '0'){
									alert("该业务已在一房多证入口操作,不能在正常繕证入口进行操作!");
								}else{
									alert("该业务已在正常繕证入口操作,不能在一房多证入口进行操作!");
								}
								return;
							}else{
						       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/printCertificate?ywh=${regBusSlsq.ywh}&szlx=0";
						       	window.open(url, "缮证打印窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
							}
						}
					}
				});
			}
	      
	      function openCertificatePrint1(szlx){
		  	  var iWidth=1100; 
		      var iHeight=600;
		      var iTop = (window.screen.height - 30 - iHeight) / 2;
		      var iLeft = (window.screen.width - 10 - iWidth) / 2;
		  	  //点击打印之前,检查缮证入口是否维护 
			  $.ajax({ 
				  type:"POST",
				  url:"${ctx}/reg/bus/regBusSz/isnotszed", 
				  cache: false,
				  data:"YWH=${YWH}&szlx="+szlx,
				  async : false,
				  success:function(modelmap){
					  var isnotszed = modelmap.data;
						var flag = modelmap.flag;
						if(isnotszed == "0"){
							alert("没有缮证维护,请先维护缮证信息再打印!");
							return;
						}else{
							if(flag == '1'){
								if(szlx == '0'){
									alert("该业务已在一房多证入口操作,不能在正常繕证入口进行操作!");
								}else{
									alert("该业务已在正常繕证入口操作,不能在一房多证入口进行操作!");
								}
								return;
							}else{
						       	var url =  "${ctx}/reg/bus/regBusBdcqzsdjxx/printCertificate?ywh=${regBusSlsq.ywh}&szlx=1";
						       	window.open(url, "缮证打印窗口", "width=" + iWidth + ", height=" + iHeight + ",top=" + iTop + ",left=" + iLeft + ",toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, status=no,alwaysRaised=yes,depended=yes");
							}
						}
					}
				});
			}
	    	//繕证类型切换
			function szlxqh(){
				var szlx = 	document.getElementById("szlxtxt").value;
				if(szlx == 0){
					//document.getElementById("szlx1").style.display="none";//通过设置display属性可以使div隐藏后释放占用的页面空间
					$("#szlx1").hide();
					//document.getElementById("szlx0").style.display="";//通过设置display属性可以使div隐藏后释放占用的页面空间
					$("#szlx0").show();
				}else if(szlx == 1){
					//document.getElementById("szlx0").style.display="none";//通过设置display属性可以使div隐藏后释放占用的页面空间
					//document.getElementById("szlx1").style.display="";//通过设置display属性可以使div隐藏后释放占用的页面空间
					$("#szlx0").hide();
					$("#szlx1").show();
				}
			}
	</script>
<script type="text/javascript">
	window.onload = function() { 
		//加载已经选择的宗地信息 
		loadChoiceOneRegedinfo();
		//加载已选择的房屋信息 
		//reloadChoicedFwInfo();
	}; 
	
	function gotoTaskTodoList(){
		var isslsq = "${isslsq}";
		var url = "${ctx}/act/task/todo?actywh=${actywh}&actsqr=${actsqr}&actdjlx=${actdjlx}&acttitle=${acttitle}";
		if(isslsq == "1"){
			url = "${ctx}/reg/bus/regBusSlsq/list?DJXL=${regBusSlsq.djxl}&actywh=${actywh}&actsqr=${actsqr}&actslry=${actslry}&acttaskdefkey=${acttaskdefkey}";
		}
		window.location = url;
	}
	
	function pjsData(){
			var pjsnr;
			$.ajax({ 
				type:"POST", 
				url:"${ctx}/reg/bus/regBusFdcq2/checkCqly",
				cache: false,
				data:"ywh=${regBusSlsq.ywh}",
			    async : false,  
				success:function(modelmap){//0表示已获取到,1则获取
					if(modelmap.success == 0){
						pjsnr = modelmap.pjsnr;
					}
				}
			}); 
			
			pop.custom({
                title: "判决书内容",
                 content: Base64.decode(pjsnr),
                 box: "body",
                  sizeAdapt: false,
                  anim: "gather",
                 width: 800,
                 height: 500,
                 id: undefined,
                   place: 5,
                 drag: true,
                 dragSize: true,
                 index: false,
                toClose: true,
                 mask: true,
               class: false
         });
		}
</script>

</head>
<body>
	<ul class="nav nav-tabs">
		<li><a href="${ctx}/reg/bus/regBusSlsq/list?DJXL=${regBusSlsq.djxl}">受理申请列表</a></li>
		<li class="active"><a href="${ctx}/reg/bus/regBusSlsq/form?procInsId=${regBusSlsq.procInsId}">受理申请详情</a></li>
	</ul><br/>
	<form:form class="form-horizontal" modelAttribute="regBusSlsq">
		<sys:message content="${message}"/>
		<fieldset>
			<legend>审批详情</legend>
			<table class="table-form">
				<tr>
					<td class="tit">要素代码</td><td>${regBusSlsq.ysdm}</td>
					<td class="tit">业务号</td><td>${regBusSlsq.ywh}</td>
					<td class="tit">登记大类</td><td>${fns:getDictLabel(regBusSlsq.djdl, 'reg_bus_djlx', '')}</td>
				</tr>
				<tr>
					<td class="tit">登记小类</td>
					<td>${fns:getDictLabel(regBusSlsq.djxl, 'reg_bus_djxl', '')}</td>
					<td class="tit">申请证书版式</td>
					<td>${fns:getDictLabel(regBusSlsq.sqzsbs, 'reg_bus_sqzsbs', '')}</td>
					<td class="tit">申请分别持证</td>
					<td>${fns:getDictLabel(regBusSlsq.sqfbcz, 'yes_no', '')}</td>
				</tr>
				<tr>
					<td class="tit">区县代码</td>
					<td>${fns:getDictLabel(regBusSlsq.qxdm, 'reg_bus_xq', '')}</td>
					<td class="tit">受理人员</td>
					<td>${regBusSlsq.slry}</td>
					<td class="tit">受理时间</td>
					<td>
						<fmt:formatDate value="${regBusSlsq.slsj}" type="both" pattern="yyyy-MM-dd HH:mm:ss"/>
					</td>
				</tr>
				<!-- 
				<tr>
					<td class="tit">坐落</td>
					<td colspan="5">${regBusSlsq.zl}</td>
				</tr>
				-->
				<tr>
					<td class="tit">申请人姓名</td>
					<td>${regBusSlsq.tzrxm}</td>
					<td class="tit">通知方式</td>
					<td>${fns:getDictLabel(regBusSlsq.tzfs, 'reg_bus_tzfs', '')}</td>
					<td class="tit">申请人电话</td>
					<td>${regBusSlsq.tzrdh}</td>
				</tr>
				<tr>
					<td class="tit">申请人移动电话</td>
					<td>${regBusSlsq.tzryddh}</td>
					<td class="tit">申请人电子邮件</td>
					<td>${regBusSlsq.tzrdzyj}</td>
					<td class="tit">是否问题案件</td>
					<td>${fns:getDictLabel(regBusSlsq.sfwtaj, 'yes_no', '')}</td>
				</tr>
				<c:if test="${regBusSlsq.djxl eq '302' and regBusSlsq.qxdm eq '610702'}">
				<tr>
					<td class="tit">受托人姓名</td>
					<td>${regBusSlsq.str}</td>
					<td class="tit">备注</td>
					<td >${regBusSlsq.bz}</td>
					<td class="tit">房源编号</td>
					<td >${regBusSlsq.fybh}</td>
				</tr>
				</c:if>
				<c:if test="${regBusSlsq.djxl ne '302' || regBusSlsq.qxdm ne '610702'}">
				<tr>
					<td class="tit">受托人姓名</td>
					<td>${regBusSlsq.str}</td>
					<td class="tit">备注</td>
					<td colspan="3">${regBusSlsq.bz}</td>
				</tr>
				</c:if>
				<tr>
					<td class="tit">处理意见</td>
					<td colspan="5">${regBusSlsq.act.comment}</td>
				</tr>
			</table>
			<br>
			<!-- 查看初审复审环节添加附件 -->
			<div class="control-group">
			<c:if test="${QXCODE eq '610702'}">
			<table>
			<tr>
			<td>
				<label class="control-label">附件查看:</label>
				</td>
				<td>
				<div>
					<form:hidden id="fjinfo" path="fjinfo" htmlEscape="false" class="input-xlarge"/>
					<sys:ckfinder input="fjinfo" type="files" uploadPath="/reg/bus/regBusSlsq" readonly="true"/>
				</div>
				</td>
				<td>
				   <label class="control-label">照片:</label>
				</td>
				   <td>
				   	 <iframe name="picname" src="${ctx}/reg/bus/uploadExamPic/scanss?ywh=${regBusSlsq.ywh}&picid=${regBusSlsq.act.taskDefKey}" width="220px" height="100px" frameborder="no" border="0"></iframe>
				   </td>
				</tr>
				</table>
			</c:if>
			<c:if test="${QXCODE ne '610702'}">
			    <label class="control-label">附件查看:</label>
				<div class="controls">
					<form:hidden id="fjinfo" path="fjinfo" htmlEscape="false" class="input-xlarge"/>
					<sys:ckfinder input="fjinfo" type="files" uploadPath="/reg/bus/regBusSlsq" readonly="true"/>
				</div>
			</c:if>
			</div>
		</fieldset>
		<fieldset>
			<legend>业务受理-相关信息查看</legend>
			<br/><br/>
			<c:if test="${regBusSlsq.djxl ne '441'}">
			<!-- 公共信息 -->
			<c:if test="${regBusSlsq.djxl ne '416' and regBusSlsq.djxl ne '422' and regBusSlsq.djxl ne '809' and  regBusSlsq.djxl ne '416' and regBusSlsq.djxl ne '819'  and regBusSlsq.djxl ne '434'}">
				<iframe id="qlrframe" name="qlrframe" src="${ctx}/reg/bus/regBusQlr/list?ywh=${regBusSlsq.ywh}&YSDM=2003000000&LISTVIEWS=1&DJLX=${regBusSlsq.djxl}" width="100%" height="250" frameborder="no" border="0" marginwidth="0"
					marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
			</c:if>
			<c:if test="${regBusSlsq.djxl eq '809' or  regBusSlsq.djxl eq '416' or regBusSlsq.djxl eq '422' or regBusSlsq.djxl eq '819'  or regBusSlsq.djxl eq '434'}">
				<iframe id="gmframe" name="gmframe" src="${ctx}/reg/bus/regBusQlr/fwgmdjlist?ywh=${regBusSlsq.ywh}&YSDM=2003000000&DJLX=${regBusSlsq.djxl}&slhj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
			</c:if>
			</c:if>
			<iframe id="sjframe" name="sjframe" src="${ctx}/reg/bus/regBusSjmain/list?ywh=${regBusSlsq.ywh}&DJLX=${regBusSlsq.djxl}&YSDM=6004030000&LISTVIEWS=1" width="100%" height="250" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
			<br><br>
			<!-- 初始登记 -->
			<!-- 国有建设用地使用权首次登记 -->
			<c:if test="${regBusSlsq.djxl eq '201'}">
				<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/list?ywh=${regBusSlsq.ywh}&YSDM=6002020100&LISTVIEW=1&djlx=201&flagym=1" width="100%" height="250" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>国有建设用地使用权登记信息</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/tdmortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=201&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 集体土地所有权首次登记 -->
			<c:if test="${regBusSlsq.djxl eq '202'}">
				<iframe id="tdsyqframe" name="tdsyqframe" src="${ctx}/reg/bus/regBusTdsyq/list?ywh=${regBusSlsq.ywh}&YSDM=6002010120&LISTVIEW=1&djlx=202&flagym=1" width="100%" height="250" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>集体土地所有权登记信息</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/tdmortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=202&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 集体建设用地使用权首次登记 -->
			<c:if test="${regBusSlsq.djxl eq '203'}">
				<iframe id="jtjsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/list?ywh=${regBusSlsq.ywh}&YSDM=6002020200&LISTVIEW=1&djlx=203&flagym=1" width="100%" height="250" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>集体建设用地使用权登记信息</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/tdmortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=203&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 宅基地使用权首次登记 -->
			<c:if test="${regBusSlsq.djxl eq '204'}">
				<iframe id="zjdjsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/list?ywh=${regBusSlsq.ywh}&YSDM=6002020300&LISTVIEW=1&djlx=204&flagym=1" width="100%" height="250" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>宅基地使用权登记信息</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/tdmortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=204&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 森林、林木所有权首次登记 -->
			<c:if test="${regBusSlsq.djxl eq '205'}">
				<iframe id="sllmsyqframe" name="gjzwframe" src="${ctx}/reg/bus/regBusLq/list?ywh=${regBusSlsq.ywh}&YSDM=2002010300&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>森林、林木所有权登记信息列表</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/lqdjxxlist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=205" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 房屋建筑物所有权-->
			<c:if test="${regBusSlsq.djxl eq '207'}"> 
				<fieldset>
					<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/list?ywh=${regBusSlsq.ywh}&YSDM=6002010210&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset> 
				<legend>房屋建筑物所有权登记信息列表</legend>
				<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mortgagelist?ywh=${regBusSlsq.ywh}&djlx=207&YSDM=2001010000&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 房地产权(项目内多幢房屋)首次登记-->
			<c:if test="${regBusSlsq.djxl eq '220'}">
				<fieldset>
					<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq1/list?ywh=${regBusSlsq.ywh}&YSDM=6002010210&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>项目内多幢登记信息列表</legend>
				<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/mortgagelist?ywh=${regBusSlsq.ywh}&YSDM=6002010210&djlx=220&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 房地产权(项目内多幢房屋)注销登记-->
			<c:if test="${regBusSlsq.djxl eq '521'}">
				<iframe id="gjzwframe" name="gjzwframe"
					src="${ctx}/reg/bus/regBusFdcq1/zxlist?ywh=${regBusSlsq.ywh}&YSDM=6002010210&LISTVIEWS=1"
					width="100%" height="200" frameborder="no" border="0"
					marginwidth="0" marginheight="0" scrolling="yes"
					allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>项目内多幢注销登记信息列表</legend>
					<iframe id="firstframe" name="firstframe"
						src="${ctx}/reg/bus/regBusBdcqzsdjxx/mortgagelist?ywh=${regBusSlsq.ywh}&YSDM=6002010210&djlx=521&ybbj=1"
						width="100%" height="300" frameborder="no" border="0"
						marginwidth="0" marginheight="0" scrolling="yes"
						allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 土地承包经营权初始登记 -->
			<c:if test="${regBusSlsq.djxl eq '208'}">
				<fieldset>
				<iframe id="nydsyqframe" name="nydsyqframe" src="${ctx}/reg/bus/regBusNydsyq/list?ywh=${regBusSlsq.ywh}&YSDM=6002020100&LISTVIEW=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/tdmortgagelist?ywh=${regBusSlsq.ywh}&YSDM=6002010220&djlx=208&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
			</c:if>
			<!-- 抵押权初次登记(最高额抵押首次登记) -->
			<c:if test="${regBusSlsq.djxl eq '209'}">
				<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/list?ywh=${regBusSlsq.ywh}&YSDM=2002030100&LISTVIEWS=1&djlx=209&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>土地使用权抵押登记信息</legend>
					<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=0&LISTVIEWS=1&djlx=209&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 在建建筑物抵押权 -->
			<c:if test="${regBusSlsq.djxl eq '213'}">
				<fieldset>
					<iframe id="dyaqframe"  name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextlist?ywh=${regBusSlsq.ywh}&YSDM=2002040100&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>在建工程抵押权登记信息列表</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&djlx=213&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 在建建筑物抵押权 -->
			<c:if test="${regBusSlsq.djxl eq '214'}">
					<iframe id="dyaqframe"  name="dyaqframe"  src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=214&YSDM=2002030100&isLogout=0&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>房屋建筑物一般抵押权登记信息列表</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=214&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 在建建筑物抵押权 -->
			<c:if test="${regBusSlsq.djxl eq '215'}">
					<iframe id="dyaqframe"  name="dyaqframe"  src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=215&YSDM=2002030100&isLogout=0&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>房屋建筑物最高额抵押权登记信息列表</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=215&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 林权一般抵押权 -->
			<c:if test="${regBusSlsq.djxl eq '216'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/lqList?ywh=${regBusSlsq.ywh}&djlx=216&YSDM=2002030100&LISTVIEWS=1&ybbj=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>林权抵押权登记信息列表</legend>
				<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=216&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 土地承包经营权抵押登记 -->
			<c:if test="${regBusSlsq.djxl eq '217'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/list?ywh=${regBusSlsq.ywh}&YSDM=2002030100&ybbj=1&djlx=217&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>土地承包经营权抵押登记信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=217&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 房屋建筑物所有权灭失登记 -->
			<c:if test="${regBusSlsq.djxl eq '441'}">
				<legend>房屋建筑物所有权灭失登记信息列表</legend>
				<fieldset>
					<iframe id="houseMsframe"  name="houseMsframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/houseMsList?ywh=${regBusSlsq.ywh}&WO=1&djlx=441&LISTVIEWS=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			<!-- 土地抵押权注销登记 -->
			<c:if test="${regBusSlsq.djxl eq '507'}">
				<fieldset>
				<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/list?ywh=${regBusSlsq.ywh}&YSDM=2002030100&isLogout=1&LISTVIEWS=1&djlx=507" width="100%" height="200" frameborder="no" border="0" marginwidth="0"
					 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>土地抵押权注销登记信息</legend>
				<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=0&LISTVIEWS=1&djlx=507&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 林权抵押权注销登记 -->
			<c:if test="${regBusSlsq.djxl eq '518'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/list?ywh=${regBusSlsq.ywh}&YSDM=2002030100&isLogout=1&djlx=518&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>林权抵押权注销登记信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=0&djlx=518&LISTVIEWS=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 集体土地所有权注销登记 -->
			<c:if test="${regBusSlsq.djxl eq '501'}">
				<fieldset>
					<iframe id="tdsyqframe" name="tdsyqframe" src="${ctx}/reg/bus/regBusTdsyq/list?ywh=${regBusSlsq.ywh}&YSDM=6002010120&LISTVIEW=1&optype=update&&djlx=501&zx=1&flagym=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>集体土地所有权注销登记信息</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/tdmortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=501" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 土地使用权注销登记 -->
			<c:if test="${regBusSlsq.djxl eq '502'}">
				<fieldset>
				<iframe id="jsydsyqframe" name="jsydsyqframe" src="${ctx}/reg/bus/regBusJsydsyq/list?ywh=${regBusSlsq.ywh}&YSDM=6002020100&LISTVIEWS=1&LISTVIEW=1&optype=update&djlx=502" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>土地使用权注销登记信息</legend>
				<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/tdmortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=502" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 房屋所有权注销 -->
			<c:if test="${regBusSlsq.djxl eq '505'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusFdcq2/list?ywh=${regBusSlsq.ywh}&DJLX=505&YSDM=2002030100&isLogout=0&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>房屋建筑物所有权注销登记信息列表</legend>
				<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=505&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			
			<!-- 在建工程抵押权注销 -->
			<c:if test="${regBusSlsq.djxl eq '509'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=509&YSDM=2002030100&isLogout=0&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>在建工程抵押权注销登记信息列表</legend>
				<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=509&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			
			<!-- 预购商品房抵押预告登记注销 -->
			<c:if test="${regBusSlsq.djxl eq '510'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=510&YSDM=2002030100&isLogout=0&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>预购商品房抵押权预告注销登记信息</legend>
				<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=510&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>		
			</c:if>
			
			<!-- 预购商品房预告登记注销-->
			<c:if test="${regBusSlsq.djxl eq '511'}">
				<fieldset>
					<iframe id="ygdjframe" name="ygdjframe" src="${ctx}/reg/bus/regBusYgdj/nextlist?ywh=${regBusSlsq.ywh}&DJLX=511&YSDM=2002030100&isLogout=0&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>预购商品房预告登记注销信息</legend>
				<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=511&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>		
			</c:if>
			
			<!-- 房屋建筑物所有权抵押预告登记注销 -->
			<c:if test="${regBusSlsq.djxl eq '513'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=513&YSDM=2002030100&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>房屋建筑物抵押权预告注销登记信息</legend>
				<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=513&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			
			<!-- 房屋建筑物抵押权注销登记 (最高额抵押注销登记)-->
			<c:if test="${regBusSlsq.djxl eq '515'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=515&YSDM=2002030100&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
				<legend>房屋建筑物抵押权注销登记信息</legend>
				<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=515&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			
			<!-- 抵押权转移登记 -->
			<!-- 土地抵押权转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '315'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=315&YSDM=2002040100&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>土地押权转移登记信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=315&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 在建工程抵押权转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '316'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=316&YSDM=2002040100&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>在建工程抵押权转移登记信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=316&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 房屋建筑物一般抵押权转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '317'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=317&YSDM=2002030100&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>房屋建筑物一般抵押权转移登记信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=317&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 房屋建筑物最高额抵押权转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '318'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&djlx=318&YSDM=2002030100&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>房屋建筑物最高额抵押权转移信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=318&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<!-- 房屋建筑物抵押权预告转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '818'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/nextxfdyList?ywh=${regBusSlsq.ywh}&YSDM=2002030100&djlx=818&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>房屋预告抵押权转移登记信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=1&djlx=818&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			
			<!-- 房屋所有权转移预告登记 -->
			<c:if test="${regBusSlsq.djxl eq '806'}">
				<fieldset>
				<div>
				<legend>房屋建筑物转移预告登记信息</legend>
				<iframe id="zyygdjframe"  name="zyygdjframe"  src="${ctx}/reg/bus/regBusYgdj/gmgzlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=806&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				</fieldset>
			</c:if>
			
			<!-- 房屋所有权转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '302'}">
				<fieldset>
					<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/zydjlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋建筑物所有权转移登记信息</legend>
						<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=302&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			<!-- 土地承包经营权使用权属性变更登记 -->
			<c:if test="${regBusSlsq.djxl eq '408'}">
				<iframe id="nydsyqframe" name="nydsyqframe" src="${ctx}/reg/bus/regBusNydsyq/nydbglist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>土地承包经营权变更前登记信息</legend>
					<iframe id="bgqforenoticeframe" name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=408" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
					 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<legend>土地承包经营权变更后登记信息</legend>
					<iframe id="propertyframe" name="propertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=408&ybbj=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
					 	marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
			</c:if>
			
			<!-- 土地承包经营权使用权更名登记 -->
			<c:if test="${regBusSlsq.djxl eq '435'}">
				<iframe id="nydsyqframe" name="nydsyqframe" src="${ctx}/reg/bus/regBusNydsyq/nydgmlist?ywh=${regBusSlsq.ywh}&DJLX=435&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<div>
						<legend>土地使用权更名前登记信息</legend>
						<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&DJLX=435" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"
						 	marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					</div>
					<div>
						<legend>土地使用权更名后登记信息</legend>
						<iframe id="forenoticeframe" name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=435&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
						 	marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					</div>
				</fieldset>
			</c:if>
			
			<!-- 土地承包经营权使用权属性更正登记 -->
			<c:if test="${regBusSlsq.djxl eq '611'}">
				<iframe id="nydsyqframe" name="nydsyqframe" src="${ctx}/reg/bus/regBusNydsyq/nydbglist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<legend>土地承包经营权更正前登记信息</legend>
					<iframe id="bgqforenoticeframe" name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=611" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
					 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<legend>土地承包经营权更正后登记信息</legend>
					<iframe id="propertyframe" name="propertyframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=611&ybbj=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
					 	marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
			</c:if>
			
			<!-- 森林、林木所有权变更登记 -->
			<c:if test="${regBusSlsq.djxl eq '417'}">
				<iframe id="sllmzyygdjframe" name="sllmzyygdjframe" src="${ctx}/reg/bus/regBusLq/bgdjlist?ywh=${regBusSlsq.ywh}&YSDM=2002010300&djlx=417&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<div>
					<legend>森林、林木所有权变更前登记信息</legend>
					<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=417" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				<fieldset>
				<div>
					<legend>森林、林木所有权变更后登记信息</legend>
					<iframe id=forenoticeframe name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=417&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				</fieldset>
			</c:if>
			
			<!-- 森林、林木所有权更正登记 -->
			<c:if test="${regBusSlsq.djxl eq '610'}">
				<iframe id="sllmzyygdjframe" name="sllmzyygdjframe" src="${ctx}/reg/bus/regBusLq/bgdjlist?ywh=${regBusSlsq.ywh}&YSDM=2002010300&djlx=610&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<div>
					<legend>森林、林木所有权更正前登记信息</legend>
					<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=610" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				<fieldset>
				<div>
					<legend>森林、林木所有权更正后登记信息</legend>
					<iframe id=forenoticeframe name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=610&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				</fieldset>
			</c:if>
			
			<!-- 森林、林木所有权转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '304'}">
				<iframe id="sllmzyygdjframe" name="sllmzyygdjframe" src="${ctx}/reg/bus/regBusLq/zydjlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<div>
						<legend>森林、林木所有权登记信息</legend>
						<iframe id=forenoticeframe name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&YSDM=2001010000&djlx=304&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			<!-- 集体土地所有权转移登记 -->
			<c:if test="${regBusSlsq.djxl eq '301'}">
				<iframe id="tdsyqframe" name="tdsyqframe" src="${ctx}/reg/bus/regBusTdsyq/syqzydjlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
						 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
					<div>
					<legend>集体土地所有权登记信息</legend>
					<iframe id="forenoticeframe" name="forenoticeframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=301&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			  <!-- 房屋所有权更名登记-->
			<c:if test="${regBusSlsq.djxl eq '416'}">
			 <fieldset>
					<iframe id="fdcqgmframe" name="gjzwframe" src="${ctx}/reg/bus/regBusFdcq2/fdcq2gmlist?YWH=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋建筑物所有权更名前登记信息列表</legend>
						<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=416" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
					<div>
						<legend>房屋建筑物所有权更名后登记信息列表</legend>												   
						<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=416" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			 </c:if>
			 <!-- 房屋预告更名登记-->
			<c:if test="${regBusSlsq.djxl eq '809'}">
			 <fieldset>
					<iframe id="ygdjframe"  name="ygdjframe"  src="${ctx}/reg/bus/regBusYgdj/nextgmlist?ywh=${regBusSlsq.ywh}&YSDM=2002040100&LISTVIEWS=1&DJLX=809"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋预告更名前登记信息</legend>
						<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=809" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
					<div>
					<legend>房屋预告更名后登记信息</legend>													   
					<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=809&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			 </c:if>
			
			<!-- 房屋建筑物预告登记合并变更 -->
			<c:if test="${regBusSlsq.djxl eq '811'}">
					<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusYgdj/ygbggmgzlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1&djlx=811" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<!-- 同一权利人合并 -->
				<fieldset>
					<legend>房屋预告登记合并前登记信息</legend>
					<iframe id="hbmergerbeforeframe" name="hbmergerbeforeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusSlsq.ywh}&djlx=811" width="100%" height="100" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<legend>房屋预告登记合并后登记信息</legend>														   
					<iframe id="hbforenoticeframe"  name="hbforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=811&ybbj=1" width="100%" height="100" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</fieldset>
			</c:if>
			
			<!-- 房屋建筑物预告登记变更登记-->
			<c:if test="${regBusSlsq.djxl eq '812'}">
					<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusYgdj/ygbggmgzlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1&djlx=812" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
				<div>
					<legend>房屋预告登记变更前登记信息</legend>
					<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=812&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				<div>
					<legend>房屋预告登记变更后登记信息</legend>													   
					<iframe id="bgforenoticeframe"  name="bgforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=812&ybbj=1" width="100%" height="100" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				</fieldset>
			</c:if>
			
			<!-- 房屋建筑物预告登记更正登记-->
			<c:if test="${regBusSlsq.djxl eq '609'}">
					<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusYgdj/ygbggmgzlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1&djlx=609" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<fieldset>
				<div>
					<legend>房屋预告登记更正前登记信息</legend>
					<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&DJLX=609&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				<div>
					<legend>房屋预告登记更正后登记信息</legend>																	   
					<iframe id="bgforenoticeframe"  name="bgforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=609&ybbj=1" width="100%" height="100" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
				</div>
				</fieldset>
			</c:if>
			
			<!-- 房屋建筑物预告分割登记-->
			<c:if test="${regBusSlsq.djxl eq '810'}">
				<iframe id="gjzwframe" name="gjzwframe" src="${ctx}/reg/bus/regBusYgdj/ygbggmgzlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1&djlx=810" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<div class="reg_sxbg">
					<div id="reg_divisioninfo"  class="reg_sxbginfo"></div><br> 
				</div>
				<fieldset>
					<legend>房屋预告登记分割前登记信息</legend>
					<iframe id="fgmergerbeforeframe" name="fgmergerbeforeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/mergeroldlist?YWH=${regBusSlsq.ywh}&djlx=810" width="100%" height="150" frameborder="no" border="0" marginwidth="0"
					 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<legend>房屋预告登记分割后登记信息</legend>
					<iframe id="fgforenoticeframe" name="fgforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=810&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0"
					 marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
			</c:if>
			 
			 <!-- 房屋预告抵押更名登记-->
			<c:if test="${regBusSlsq.djxl eq '819'}">
			 <fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/fwdygmList?ywh=${regBusSlsq.ywh}&djlx=819&YSDM=2002030100&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋预告抵押权更名前登记信息</legend>															   
						<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=819&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
					<div>
						<legend>房屋预告抵押权更名后登记信息</legend>
						<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=819&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			 </c:if>

			<!-- 房屋抵押权更名登记-->
			<c:if test="${regBusSlsq.djxl eq '422'}">
			<fieldset>
					<iframe id="dyaqframe"  name="dyaqframe"  src="${ctx}/reg/bus/regBusDyaq/fwdygmList?ywh=${regBusSlsq.ywh}&djlx=422&YSDM=2002030100&LISTVIEWS=1"   width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋建筑物抵押权更名前登记信息列表</legend>															   
						<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=422&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
					<div>
						<legend>房屋建筑物抵押权更名后登记信息列表</legend>																	   
						<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=422&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			 </c:if>
			 
			 <!-- 土地使用权抵押更名登记 -->
			<c:if test="${regBusSlsq.djxl eq '434'}">
				<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/fwdygmList?ywh=${regBusSlsq.ywh}&djlx=434&YSDM=2002030100&isLogout=0&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				<br>
				<fieldset>
					<div>
						<legend>土地抵押权更名前登记信息</legend>
						<iframe id="bgqforenoticeframe"  name="bgqforenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/bgqygzymortgagelist?ywh=${regBusSlsq.ywh}&DJLX=434&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"
						 	marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					</div>
					<div>
						<legend>土地抵押权更名后登记信息</legend>
						<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=434&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			 
			 <!-- 转移预告登记注销信息 -->
			<c:if test="${regBusSlsq.djxl eq '512'}">
				<fieldset>
					<iframe id="zyygdjzxframe"  name="zyygdjzxframe"  src="${ctx}/reg/bus/regBusYgdj/ygzyzxgmgzlist?ywh=${regBusSlsq.ywh}"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
						<div>
						<legend>房屋建筑物转移预告注销登记信息</legend>
						<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=512&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
						</div>
				</fieldset>
			</c:if>
			 
			 <!-- 房屋查封登记-->
			<c:if test="${regBusSlsq.djxl eq '905'}">
				<fieldset>
					<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/fwcflist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
					<legend>房屋查封登记信息列表</legend>		
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=905" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			 
			 <!-- 房屋查封登记注销-->
			<c:if test="${regBusSlsq.djxl eq '906'}">
				<fieldset>
					<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/fwcfzxlist?jfywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					</div>
					<legend>房屋查封注销登记信息列表</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=906" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			 
			<!-- 房屋预查封登记-->
			<c:if test="${regBusSlsq.djxl eq '907'}">
				<fieldset>
					<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/fwycflist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋预查封登记信息列表</legend>			
						<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=907" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			<!-- 房屋空楼盘预查封登记-->
			<c:if test="${regBusSlsq.djxl eq '910'}">
				<fieldset>
					<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/lpycflist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋预查封登记信息列表</legend>			
						<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=910" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			<!-- 房屋空楼盘预查封登记注销-->
			<c:if test="${regBusSlsq.djxl eq '912'}">
				<fieldset>
					<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/lpycfzxlist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋预查封登记信息列表</legend>			
						<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=912" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			<!-- 房屋预查封登记注销-->
			<c:if test="${regBusSlsq.djxl eq '908'}">
				<fieldset>
					<iframe id="cfdjframe" name="cfdjframe" src="${ctx}/reg/bus/regBusCfdj/fwycfzxlist?jfywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋预查封注销登记信息列表</legend>
						<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=908" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			<!-- 房屋异议登记-->
			<c:if test="${regBusSlsq.djxl eq '703'}">
				<fieldset>
					<iframe id="yydjframe" name="yydjframe" src="${ctx}/reg/bus/regBusYydj/fwyylist?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
					<legend>房屋异议登记信息</legend>
					<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&djlx=703" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			 
			 <!-- 房屋异议注销登记-->
			<c:if test="${regBusSlsq.djxl eq '704'}">
				<fieldset>
					<iframe id="yydjframe" name="yydjframe" src="${ctx}/reg/bus/regBusYydj/fwyyzxlist?zxyyywh=${regBusSlsq.ywh}&LISTVIEWS=1" width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
						<legend>房屋异议注销登记信息</legend>
						<iframe id="firstframe" name="firstframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/ygzymortgagelist?ywh=${regBusSlsq.ywh}&ybbj=1&djlx=704" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			 
			<!-- 预购商品房预告信息 -->
			<c:if test="${regBusSlsq.djxl eq '803'}">
				<fieldset>
					<iframe id="ygdjframe" name="ygdjframe" src="${ctx}/reg/bus/regBusYgdj/nextlist?ywh=${regBusSlsq.ywh}&YSDM=2002040100&LISTVIEWS=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
					<div>
					<legend>预购商品房预告登记信息</legend>
					<iframe id="forenoticeframe"  name="forenoticeframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/mortgagelist?ywh=${regBusSlsq.ywh}&djlx=803&YSDM=2001010000&LISTVIEWS=1&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
					</div>
				</fieldset>
			</c:if>
			
			<!-- 预购商品房抵押预告登记 -->
			<c:if test="${regBusSlsq.djxl eq '804'}">
				<fieldset>
					<iframe id="dyaqframe" name="dyaqframe" src="${ctx}/reg/bus/regBusDyaq/yglist?ywh=${regBusSlsq.ywh}&YSDM=2002030100&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>预购商品房抵押权登记信息</legend>
					<iframe id="mortgageframe" name="mortgageframe" src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&FormalMortgage=0&LISTVIEWS=1&djlx=804&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
	

			<!-- 房屋所有权抵押预告登记 -->
			<c:if test="${regBusSlsq.djxl eq '807'}">
				<fieldset>
					<iframe id="dyaqframe"  name="dyaqframe"  src="${ctx}/reg/bus/regBusDyaq/yglist?ywh=${regBusSlsq.ywh}&YSDM=2002040100&LISTVIEWS=1&ybbj=1"  width="100%" height="200" frameborder="no" border="0" marginwidth="0"  marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>&nbsp;
				</fieldset>
					<legend>房屋建筑物抵押权预告登记信息</legend>
					<iframe id="mortgageframe"  name="mortgageframe"  src="${ctx}/reg/bus/regBusBdcqzsdjxx/xfmortgagelist?YWH=${regBusSlsq.ywh}&YSDM=2001010000&LISTVIEWS=1&djlx=807&ybbj=1" width="100%" height="300" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="yes" allowtransparency="yes"></iframe>
			</c:if>
			<c:if test="${regBusSlsq.djxl ne '441'}">
			<a href="${ctx}/reg/bus/regBusSz/list?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" class="btn btn-primary" target="blank">缮证信息查看</a>&nbsp;
			<a href="${ctx}/reg/bus/regBusFz/list?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" class="btn btn-primary" target="blank">发证信息查看</a>&nbsp;
			<a href="${ctx}/reg/bus/regBusGd/list?ywh=${regBusSlsq.ywh}&LISTVIEWS=1" class="btn btn-primary" target="blank">归档信息查看</a>&nbsp;
			</c:if>
			<button type="button" class="btn btn-primary" onclick="openPrintView();">受理通知单打印</button>
			<button type="button" class="btn btn-primary" onclick="openPrintSlsqView();">受理申请单打印</button>
			<c:if test="${regBusSlsq.djxl eq '207' or regBusSlsq.djxl eq '213' or regBusSlsq.djxl eq '214'
				 or regBusSlsq.djxl eq '215' or regBusSlsq.djxl eq '515' or regBusSlsq.djxl eq '441'}">
			<button type="button" class="btn btn-primary" onclick="allPrint();">不动产清单打印</button>
			</c:if>
			<c:if test="${regBusSlsq.djxl ne '501' and regBusSlsq.djxl ne '502' and regBusSlsq.djxl ne '503' and regBusSlsq.djxl ne '504'
			and regBusSlsq.djxl ne '505' and regBusSlsq.djxl ne '507' and regBusSlsq.djxl ne '509' and regBusSlsq.djxl ne '510'
			and regBusSlsq.djxl ne '511' and regBusSlsq.djxl ne '512' and regBusSlsq.djxl ne '513' and regBusSlsq.djxl ne '515'
			and regBusSlsq.djxl ne '702' and regBusSlsq.djxl ne '704' and regBusSlsq.djxl ne '901' and regBusSlsq.djxl ne '902'
			and regBusSlsq.djxl ne '903' and regBusSlsq.djxl ne '904' and regBusSlsq.djxl ne '905' and regBusSlsq.djxl ne '906' 
			and regBusSlsq.djxl ne '907' and regBusSlsq.djxl ne '908' and regBusSlsq.djxl ne '441'}">
			<button type="button" class="btn btn-primary" onclick="printHousejfView();">
				缴费单打印
			</button>
			</c:if>
			
			<c:if test="${regBusSlsq.djxl ne '501' and regBusSlsq.djxl ne '502' and regBusSlsq.djxl ne '503' and regBusSlsq.djxl ne '504'
			and regBusSlsq.djxl ne '505' and regBusSlsq.djxl ne '507' and regBusSlsq.djxl ne '509' and regBusSlsq.djxl ne '510'
			and regBusSlsq.djxl ne '511' and regBusSlsq.djxl ne '512' and regBusSlsq.djxl ne '513' and regBusSlsq.djxl ne '515'
			and regBusSlsq.djxl ne '702' and regBusSlsq.djxl ne '704' and regBusSlsq.djxl ne '901' and regBusSlsq.djxl ne '902'
			and regBusSlsq.djxl ne '903' and regBusSlsq.djxl ne '904' and regBusSlsq.djxl ne '905' and regBusSlsq.djxl ne '906' 
			and regBusSlsq.djxl ne '907' and regBusSlsq.djxl ne '908' and regBusSlsq.djxl ne '441'}">
			<button type="button" class="btn btn-primary" onclick="openPrintFssrskView();">
				非税收入收款票据打印
			</button>
			</c:if>
			
			<c:if test="${regBusSlsq.djxl ne '201' and regBusSlsq.djxl ne '203' and regBusSlsq.djxl ne '202' and regBusSlsq.djxl ne '204'
			and regBusSlsq.djxl ne '209' and regBusSlsq.djxl ne '421' and regBusSlsq.djxl ne '405' and regBusSlsq.djxl ne '406'
			and regBusSlsq.djxl ne '407' and regBusSlsq.djxl ne '305' and regBusSlsq.djxl ne '306' and regBusSlsq.djxl ne '307'
			and regBusSlsq.djxl ne '602' and regBusSlsq.djxl ne '901' and regBusSlsq.djxl ne '701' and regBusSlsq.djxl ne '502'
			and regBusSlsq.djxl ne '507' and regBusSlsq.djxl ne '904' and regBusSlsq.djxl ne '702' and regBusSlsq.djxl ne '501' 
			and regBusSlsq.djxl ne '315' and regBusSlsq.djxl ne '605' and regBusSlsq.djxl ne '430' and regBusSlsq.djxl ne '601'
			and regBusSlsq.djxl ne '401' and regBusSlsq.djxl ne '418' and regBusSlsq.djxl ne '419' and regBusSlsq.djxl ne '1001' 
			and regBusSlsq.djxl ne '441' and regBusSlsq.djxl ne '205' and regBusSlsq.djxl ne '220' and regBusSlsq.djxl ne '1002'
			and regBusSlsq.djxl ne '216' and regBusSlsq.djxl ne '414' and regBusSlsq.djxl ne '211' and regBusSlsq.djxl ne '212'
			and regBusSlsq.djxl ne '412' and regBusSlsq.djxl ne '304' and regBusSlsq.djxl ne '312' and regBusSlsq.djxl ne '516'
			and regBusSlsq.djxl ne '415' and regBusSlsq.djxl ne '517' and regBusSlsq.djxl ne '208' and regBusSlsq.djxl ne '1005'}">
			<button type="button" class="btn btn-info" onclick="openHouseView();">
				楼盘
			</button>
			</c:if>
			<c:if test="${regBusSlsq.djxl eq '201' or regBusSlsq.djxl eq '203' or regBusSlsq.djxl eq '202' or regBusSlsq.djxl eq '204'
			or regBusSlsq.djxl eq '209' or regBusSlsq.djxl eq '421' or regBusSlsq.djxl eq '405' or regBusSlsq.djxl eq '406'
			or regBusSlsq.djxl eq '407' or regBusSlsq.djxl eq '305' or regBusSlsq.djxl eq '306' or regBusSlsq.djxl eq '307'
			or regBusSlsq.djxl eq '602' or regBusSlsq.djxl eq '901' or regBusSlsq.djxl eq '701' or regBusSlsq.djxl eq '502'
			or regBusSlsq.djxl eq '507' or regBusSlsq.djxl eq '904' or regBusSlsq.djxl eq '702' or regBusSlsq.djxl eq '501' 
			or regBusSlsq.djxl eq '315' or regBusSlsq.djxl eq '605' or regBusSlsq.djxl eq '430' or regBusSlsq.djxl eq '601'
			or regBusSlsq.djxl eq '401' or regBusSlsq.djxl eq '418' or regBusSlsq.djxl eq '419' or regBusSlsq.djxl eq '1001' 
			or regBusSlsq.djxl eq '1002' or regBusSlsq.djxl eq '208'}">
			<button type="button" class="btn btn-warning" onclick="openGroundView();">
				宗地
			</button>
			</c:if>
			<c:if test="${pjnr eq '1'}">
			   <button type="button" class="btn btn-primary"  onclick="pjsData();">
					裁决书
				</button>
			</c:if>
			<c:if test="${regBusSlsq.act.taskDefKey eq 'reg_end'}">
				<button type="button" class="btn btn-danger" onclick="printgdInfo();">
					归档信息打印
				</button>
			</c:if>
			<br><br>
			<!-- 缮证环节 -->
			<c:if test="${regBusSlsq.act.taskDefKey eq 'reg_audit5'}">
				<label style="color:red">繕证类型:</label>	
				<form:select id="szlxtxt" path="djxl" class="input-medium" onclick="szlxqh()">
					<form:option value="0"  label="正常繕证"/>
					<form:option value="1"  label="一房多证"/>
				</form:select>&nbsp;&nbsp;&nbsp;
				<style type="text/css">
				div#szlx0 {display:inline;}
				div#szlx1 {display:inline;}
				</style>
				<div id="szlx0">
				<button type="button" class="btn btn-primary"  onclick="openCertificatePrint('0');">
					正常繕证【打印】
				</button>
				</div>
				<div id="szlx1">
				<button type="button" class="btn btn-primary"  onclick="openCertificatePrint1('1');">
					一房多证【打印】
				</button>
				</div>
			</c:if>
			
		</fieldset>
		<div class="form-actions">
			<input id="btnCancel" class="btn" type="button" value="返 回" onclick="gotoTaskTodoList();"/>
		</div>
		<act:histoicFlow procInsId="${regBusSlsq.procInsId}" />
	</form:form>
</body>
</html>