function opacity(obj,opa) {
	if (document.all) {
		if (Math.floor(opa*100)==100) {
			obj.style.filter='';
			obj.style.display='none';
			obj.style.display='block';
		} else
			obj.style.filter='alpha(opacity='+Math.floor(opa*100)+')';
	} else
		obj.style.opacity=opa;
}
function cache(a) {
	var o=new Image();
	o.src=a;
	delete o;
}
cache.images=[];
