// ********************
// ver 1.0 - 20081101
// ********************
// set cookie ___________________________
function setjsCookie(inname, inlangu) { 
	var expiresDate = new Date();
	expiresDate.setMonth(expiresDate.getMonth() + 6);
	cookieExpires = expiresDate.toGMTString();
	document.cookie = inname+"="+inlangu+";expires="+cookieExpires+";path=/;";
}
function removeCookie(inname){
	document.cookie = inname+"='';expires=-1;path=/;";
}
//
function hello(){
	alert("any2");
}
