/***************************
* website_title
****************************/
document.title="::::::: HCI LAB :::::::";



/******************************************************************************/
/* popup
/******************************************************************************/
/* window_open 스크롤이 없을 때 */
function popWin(url, target, intwidth,intheight) {
	window.open(url, target , "width="+intwidth+",height="+intheight+",resizable=0,scrollbars=0,status=1");
}

/* window_open 스크롤이 있을 때 */
function popWinS(url, target, intwidth,intheight) {
	window.open(url, target , "width="+intwidth+",height="+intheight+",resizable=0,scrollbars=1");
}

/* window_close */
function popClose() {
	window.close();
}

/**
 * HCI Lab file 파일업로드
 */
function popupFileSelect(){		
	window.open("/common/fileUploadForm.do", "popupName", "width=400,height=200,scrollbars=no");		
}

/**
 * HCI Lab 썸네일 업로드
 */ 
function popupThumbnail(){
	window.open("/common/thumbnailForm.do" ,"popupName","width=400,height=200,scrollbars=no");
}

/**
 * 이메일 도메인 선택
 */
function changeEmailDomain(element, changeElementId){
	if( isEmpty( $jq(element).val() ) ){
		$jq("#"+changeElementId).val('');
		$jq("#"+changeElementId).attr("readonly", "");
	}else{
		$jq("#"+changeElementId).val( $jq(element).val() );
		$jq("#"+changeElementId).attr("readonly", "readonly");
	}
}
