var fDesc=new Array();
fDesc[0] = "OraLobEditor is a Oracle LOB(CLOB,BLOB) field edit tool. OraLobEditor allows you to proceed quickly and efficiently in your Oracle LOB(CLOB,BLOB) field edit work.
The main features are:
1 View/Edit Oracle LOB ( BLOB, CLOB) data(plain text,RTF,image,hex,html,xml...).
2 Common image formats support(JPEG, GIF, BMP, PNG, TIFF...) .
3 Editing Oracle LOB(BLOB, CLOB) data in hexadecimal mode .
4 View Oracle LOB (BLOB, CLOB) data (image, pdf, word, excel, mp3 ...) with external tool.
5 Load LOB data from file, Save LOB data to file.
6 Import/Export LOB data.
7 View/Edit Oracle long string(Char,Varchar2) data in text editor (text/hexadecimal).";
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 = '';
}
}