	var timer1;	var no;	function window_onload(){	no=0;	timer1=setInterval("fadeIn()",30);}function fadeIn(){	if (no>=100){		clearInterval(timer1);		document.getElementById("fade-id").style.color="#666666";		no=100;		timer1=setInterval("fadeOut()",40);		return(0);	}	else{		if(document.all){			document.getElementById("fade-id").filters.alpha.opacity=no;		}		else{			document.getElementById("fade-id").style.opacity=no/100;		}		no++;	}}function fadeOut(){	if (no<=0){		clearInterval(timer1);		document.getElementById("fade-id").style.color="#666666";		no=0;		timer1=setInterval("fadeIn()",40)		return(0);	}	else{		if(document.all){			document.getElementById("fade-id").filters.alpha.opacity=no;		}		else{			document.getElementById("fade-id").style.opacity=no/100;		}		no--;	}}