var table;

var inter;
var v=0;
function Otherappear(id){

table= document.getElementById(id).style;
v+=.07;
table.visibility="visible";
table.opacity=v;
if(v<1){
	inter=window.setInterval("Otherappear2()",60);
 
}
}
function Otherappear2(){
if(v<1){
	v+=0.04;
	table.opacity=v;
 
}
else{
	window.clearInterval(inter);
 
}
 
}
function IEappear(id){
v+=10;

table= document.getElementById(id).style;
table.visibility="visible";
var t = "alpha(opacity="+v+")";


table.filter=t;
if(v<100){
	inter=window.setInterval("IEappear2()",80);
 
}
}
function IEappear2(){
if(v<100){
	v+=5;
	var t = "alpha(opacity="+v+")"
	table.filter=t;
 
}
else{
	window.clearInterval(inter);
 
}
 
}
function appear(id){
var browser=navigator.appName;
if(browser!="Microsoft Internet Explorer"){
	Otherappear(id);
}
else{
	IEappear(id);
}



}




