function goPage( pageNum ) {
	window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
	window.document.forms[ "frmPictureList" ].prmPagingNum.value = pageNum;
	window.document.forms[ "frmPictureList" ].prmBoardNo.value = window.document.getElementById( "boardNum" ).value;
	//window.document.forms[ "frmPictureList" ].action = "/status0401.do";
	window.document.forms[ "frmPictureList" ].submit();
}

function showPicture( img ) {
	window.document.getElementById( "imgPicture" ).src = img.src;
}

function xssReplace(a){
	var limit_char = /[~!\#$^&%*\=+|:;?"<,.>']/;
	var tmp_str="";
	for(var i=0; i<a.length; i++) {
		var data1=a.charAt(i);
		tmp_str+=data1.replace(limit_char,"");
	}
	return tmp_str;
}

$( function() {
	
	$( "#btnPark" ).click( function() {
		window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
		window.document.forms[ "frmPictureList" ].prmPagingNum.value = 1;
		window.document.forms[ "frmPictureList" ].prmBoardNo.value = 13;
		window.document.forms[ "frmPictureList" ].action = "/status0401.do";
		window.document.forms[ "frmPictureList" ].submit();		
	}).css( "cursor", "pointer" );
	
	$( "#btnForest" ).click( function() {
		window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
		window.document.forms[ "frmPictureList" ].prmPagingNum.value = 1;
		window.document.forms[ "frmPictureList" ].prmBoardNo.value = 14;
		window.document.forms[ "frmPictureList" ].action = "/status0401.do";
		window.document.forms[ "frmPictureList" ].submit();		
	}).css( "cursor", "pointer" );
	
	$( "#btnRiver" ).click( function() {
		window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
		window.document.forms[ "frmPictureList" ].prmPagingNum.value = 1;
		window.document.forms[ "frmPictureList" ].prmBoardNo.value = 15;
		window.document.forms[ "frmPictureList" ].action = "/status0401.do";
		window.document.forms[ "frmPictureList" ].submit();		
	}).css( "cursor", "pointer" );
	
	$( "#btnRoad" ).click( function() {
		window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
		window.document.forms[ "frmPictureList" ].prmPagingNum.value = 1;
		window.document.forms[ "frmPictureList" ].prmBoardNo.value = 17;
		window.document.forms[ "frmPictureList" ].action = "/status0401.do";
		window.document.forms[ "frmPictureList" ].submit();		
	}).css( "cursor", "pointer" );
	
	$( "#btnEnvir" ).click( function() {
		window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
		window.document.forms[ "frmPictureList" ].prmPagingNum.value = 1;
		window.document.forms[ "frmPictureList" ].prmBoardNo.value = 18;
		window.document.forms[ "frmPictureList" ].action = "/status0401.do";
		window.document.forms[ "frmPictureList" ].submit();		
	}).css( "cursor", "pointer" );
	
	$( "#btnNature" ).click( function() {
		window.location.href = "/status0401.do";
	}).css( "cursor", "pointer" );
	
	$( "#btnSky" ).click( function() {
		window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
		window.document.forms[ "frmPictureList" ].prmPagingNum.value = 1;
		window.document.forms[ "frmPictureList" ].prmBoardNo.value = 20;
		window.document.forms[ "frmPictureList" ].action = "/status0402.do";
		window.document.forms[ "frmPictureList" ].submit();	
	}).css( "cursor", "pointer" );
	
	$( "#btnSatellite" ).click( function() {
		window.document.forms[ "frmPictureList" ].method.value = "getPictureList";
		window.document.forms[ "frmPictureList" ].prmPagingNum.value = 1;
		window.document.forms[ "frmPictureList" ].prmBoardNo.value = 21;
		window.document.forms[ "frmPictureList" ].action = "/status0403.do";
		window.document.forms[ "frmPictureList" ].submit();	
	}).css( "cursor", "pointer" );
	
	$( "#btnSearch" ).click( function () {
		if( window.document.getElementById( "txtSearch" ).value == "" ) {
			alert( "검색어를 입력하세요" );
		} else {
			window.document.forms[ "frmPictureList" ].method.value = "getSearch";
			window.document.forms[ "frmPictureList" ].prmBoardNo.value = window.document.getElementById( "boardNum" ).value;
			window.document.forms[ "frmPictureList" ].prmKeyword.value = xssReplace(window.document.getElementById( "txtSearch" ).value);
			window.document.forms[ "frmPictureList" ].submit();
		}
	}).css( "cursor", "pointer" );	
	
	$( "#txtSearch" ).keydown( function( evt ) {
		var evCode = ( window.netscape ) ? evt.which : window.keyCode;
		if( evCode == 13 ) {
			if( window.document.getElementById( "txtSearch" ).value == "" ) {
				alert( "검색어를 입력하세요" );
			} else {
				window.document.forms[ "frmPictureList" ].method.value = "getSearch";
				window.document.forms[ "frmPictureList" ].prmKeyword.value = xssReplace(window.document.getElementById( "txtSearch" ).value);
				window.document.forms[ "frmPictureList" ].submit();
			}			
		}
	});
	
});
