function setFocus(obj) {
	obj.style.backgroundColor = '#D5C7C4';
}
function setBlur(obj) {
	obj.style.backgroundColor = '#FCF9F0';
}
function btnOver(obj, val) {
	obj.src = "/common/images/" + val + "_on.gif";
}
function btnOut(obj, val) {
	obj.src = "/common/images/" + val + ".gif";
}

function openWindow01(){
	window.open("../popup.html","","left=100,top=100,width=800,height=600,toolbar=no,status=yes,menubar=no");
}

function openWindow02(val){
	window.open(val,"","width=600,height=600,toolbar=no,status=no,menubar=no");
}

function openwin(url) {
window.open(url, "win", "location=no,scrollbars=yes,width=620,height=640");
}

