/* ******************************************************************************************
* Filename		: rw_user.js
* Regist Date	: 2005.04.19
* Company		: Cidow / www.cidow.com 
* Author		: bluehiker / bluehiker@cidow.com
* Description	: user javascript
* Function 		: 
******************************************************************************************* */

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// page move
// @param page		: 이동할 페이지
//		  pageNO	: 페이지 번호
//        rwKind	: 러시아/창호 구분자
//        tKind		: 게시판 종류 구분자 
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 function goPage(page, pageNo, rwKind, tKind) {
	 location.href = page+"?pageNo="+pageNo+"&rwKind="+rwKind+"&tKind="+tKind;
 }

//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
// about - global : select country 
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 function leapto() {
	var uid = new Date().getTime();
	var myindex = document.urlForm.location.selectedIndex;
	str = new String(document.urlForm.location.options[myindex].value);
	strarray = str.split(/\,/);

	if (strarray[0] == "_top") {
		//window.open(strarray[1], uid, "");
		location.href = strarray[1];
	}
	myindex = 0;
}