/*
Copyright © 2007 Pasion Mura (PM Works Corporation)
and AWA Awards.
All rights reserved.
*/

/*function hideDiv(divName){
	tempDiv = document.getElementById(divName);
	if (!tempDiv) {
		return;
	}
		if (tempDiv.style.display == "inline") {
			addClass(tempDiv, "wasinline");
		}
		else if (tempDiv.style.display == "block") {
			addClass(tempDiv, "wasblock");
		}
		tempDiv.style.display="none";
}

function addClass(element, _class) {
	element.className += element.className ? " " + _class : _class;
}*/