//±¤°í Àç»ý ÆË¾÷Ã¢ ¿­±â
function openMovie(category, name, w, h) {
window.open("cf_pop.jsp?category=" + category + "&filename=" + name + "&w=" + w + "&h=" + h,"newwin","resizable=0,scrollbars=0,status=0,width=" + w + ",height=" + h);
}

//$·Î ¾ÆÀÌµð °´Ã¼ °¡Á®¿À±â
function $(elementName) {
	var obj = document.getElementById(elementName);
	return obj;
}

//input text typeÀÇ °ª À¯¹« Ã¼Å©
function checkInput(obj, msg) {
	if(obj.value.length<1) {
		alert(msg);
		obj.focus();
		return false;
	}else {
		return true;
	}
}

//input radio typeÀÇ °ª ¼±ÅÃ À¯¹« Ã¼Å©
function checkRadio(obj, msg) {
	var checkSelect = false;
	for(i=0; i<obj.length; i++) {
		if(obj[i].checked) {
			checkSelect = true;
		}
	}
	
	if(!checkSelect) {
		alert(msg);
		return checkSelect;
	}else {
		return checkSelect;
	}
}

//SSL º¸¾ÈÁ¤Ã¥ ¾È³»
function open_SSL() {
	window.open('/ssl_h-brand.html','20070705', 'width=540,height=420,top=0,left=0');
}

