function paing_mouseEvent(event, style_type){
	var theEvent = event ? event : window.event;
	var objSelect = theEvent.srcElement ? theEvent.srcElement : theEvent.target ;

	if(theEvent == null) return false;
	if(objSelect.className == "page_selected") return false;
	if(objSelect.className == "display_none") return false;
	if(objSelect.id=="pastPage"   || objSelect.id=="nextPage"){return false};

	objSelect.className = style_type;
}

function paing_pagemove(event, addQuery){
	var theEvent = event ? event : window.event;

	PagingDiv = document.getElementById('local_paging');

	var objSelect = theEvent.srcElement ? theEvent.srcElement : theEvent.target ;

	if(objSelect.id=="nextPage"){
		selectNum = parseInt(objSelect.tabIndex);
	}
	else if(objSelect.id=="pastPage"){
		selectNum = parseInt(objSelect.tabIndex);
	}
	else{
		selectNum = parseInt(objSelect.innerHTML);
		addQuery += "&start=" +  PageNum * (selectNum-1);
	}



	queryString = "?mode=show_list&" + addQuery;
	var rel = MOVE_URL+queryString;

	location.href=rel;
}

function display_item(showItem, hiddenItem,mode){
	var object_show = "";
	var object_hidden  = "";

	if(mode==null) mode="basic";
	
 	if(mode=="basic"){
		object_show = document.getElementById(showItem);
		object_hidden = document.getElementById(hiddenItem);

		if(object_show!=null)	 object_show.style.display = "";
		if(object_hidden!=null) object_hidden.style.display = "none";
	}

 	else if(mode=="array"){

		for(i=0;i  <showItem.length; i++){
			object_show = document.getElementById(showItem[i]);
			if(object_show!=null)	 object_show.style.display = "";
		}
	
		for(i=0;i  <hiddenItem.length; i++){
			object_hidden = document.getElementById(hiddenItem[i]);
			if(object_hidden!=null)	 object_hidden.style.display = "none";		
		}
	}
}

// ¿ìÆí¹øÈ£(¹Ì±¹)
function search_usazip(selectform){

	if(selectform=="")
		selectform = "join";

	var objEn_zip = document.getElementById("en_zip").value;
	// ÀÌ¸ÞÀÏ Ã¼Å©
	if(!objEn_zip)
	{
		alert("Zipcode¸¦ ÀÔ·ÂÇØ ÁÖ½Ã±â ¹Ù¶ø´Ï´Ù.");
		document.getElementById("en_zip").focus();
		return;
	}
	window.open('/app/search_usazip.php?wn=%BF%EC%C6%ED%B9%F8%C8%A3%B0%CB%BB%F6&fn='+selectform+'&en_zip=' + objEn_zip, '', 'width=1,height=1,resizable=1,scrollbars=1' );
	return;		
}

// »ó¼¼Á¤º¸ÀÔ·Â_µµ¿ò¸»
function helptxtOn(id) {
	document.getElementById(id).style.display='block';
}
function helptxtOff(id) {
	document.getElementById(id).style.display='none';
}
function helpExDown(id) {
	document.getElementById(id).style.zIndex='98';
}
function helpExUp(id) {
	document.getElementById(id).style.zIndex='99';
}

// ´Þ·Âº¸±â
function diary_date(str,strForm,top,left)
{
	window.open('/adver/diary.php?fn='+strForm+'&date_type=' + str, '', 'width=200,height=178,top='+top+',left='+left+',resizable=0,scrollbars=0' );
	return;
}

// ´Þ·Âº¸±â
function openWindow(url, width,height,top,left,winName,mode)
{
	if(winName=="") winName = "newWindow";
	if(mode=="") mode = "basic";

	if(mode=="basic") 
		var addConticion = ", resizable=0,scrollbars=0'";
	else 
		var addConticion = " ";

	window.open(url, winName, 'width='+ width+',height='+height+',top='+top+',left='+left+addConticion);
	return;
}

