// JavaScript Document

function stupidflashhack(where,what){
	if (where == 'here'){
		document.write(what);
	}else{
		if (document.getElementById(where)){
			document.getElementById(where).innerHTML = what;
		}
	}
}

function hideSelects(){
	return false;
}