// JavaScript Document

function OverTd(td){
	td.style.backgroundColor = "#FFFFFF";
	td.style.cursor = "hand";
	td.style.cursor = "pointer";
}
function OutTd(td){
	td.style.backgroundColor = "#e3e2e2";
}
function RollOver(img){
	img.style.borderColor = "#0b1d5f";	
}
function RollOut(img){
	img.style.borderColor = "#FFFFFF";	
}
function ImgOpacity100(divId){
	var div	= document.getElementById(divId);
	div.className='ImgOpacity100';
}
function ImgOpacity80(divId){
	var div	= document.getElementById(divId);
	div.className='ImgOpacity80';
}
function checkSearch(){
	if(document.getElementById('name').value == "")
	{
		document.getElementById('error_search').style.display = "block";
		return false;
	}else{
		return true;
	}
}