var fDesc=new Array();
fDesc[0] = "Quintura Search offers a visual map of tags or hints contextually related to your search query. You can add or subtract tags from the query with a mouse click to specify the context or meaning of the query.
Using Quintura Search, you can:
- Create and personalize a search engine (search scope) using tags related to a search query
- Make search scope more specific and personalize the scope by adding or subtracting tags using a visual map
- Refine search results removing search links or Web sites from the result list
- Save the search scope as a file and share it with others
- Monitor new information becoming available on the Web related to your personal interest
Quintura Search utilizes a regular search engine (Google, Yahoo!, MSN Search, Technorati) to send and retrieve the results of a query.";
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 = '';
}
}