var fDesc=new Array();
fDesc[0] = "Kolor has released a new public beta of next version of Autopano Tour. Autopano Tour enables you to create 360° virtual tours in Flash format.
Main Features :
- an intuitive user interface to create virtual tours without programming skills
- several types of hotspots: polygons, points
- lens flares
- auto-rotation
- inclusion of still images, logos and Flash objects
- inclusion of HTML pages
- transition effect
- adding of a map
- new transition effects
- inclusion of videos projected in 3D
- inclusion of sounds with 3D localization
- new type of hotspot: distorted rectangle
- customizable graphical templates";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}