function findMe(target, sub_target){
	document.getElementById(target).className = "selected";
	if (sub_target){
		for (i=0;i<sub_target.length;i++){
			document.getElementById(sub_target[i]).className = "selected";
		}
	}
}
function blank(path, may) {
registerWindow = window.open(path,'mywindow','width=500,height=565,status=no,menubar=no,menu=no,resizable=yes,scrollbars=yes');
registerWindow.focus();
return false;
}