var op=0;
function Open(where){
	document.getElementById(where).style.display = 'inline';
}

function Close(where){
	document.getElementById(where).style.display = 'none';
}

function appear(id)   
	{    
	    if(op < 1)  
	    { 
	        op += 0.1; 
	        wObj.style.opacity = op; 
	        wObj.style.filter='alpha(opacity='+op*100+')'; 
	        t = setTimeout('appear()', 30); 
	    } 
	} 