  function LargeImageShow(LImageUrl,ImageW,ImageH){
                ImageH += 20;
                ImageW += 20;
                largeImage = window.open(LImageUrl,'largeImage','location=no,left=200,top=200,menubar=no,height='+ ImageH +',width=' + ImageW);
                largeImage.focus();
            }
            
            function FixStr(strToFix){
              	var re,rv;
              	var rv = String(strToFix);
              	re = /[\{\}-]/g;
              	rv=rv.replace(re,"");
                return (rv);
            }
            
            function OffLineAlert(){
            	 alert('This option disabled  Off-Line.');
            	 return false;
            }

 var bName = navigator.appName;
 var bVer = parseInt(navigator.appVersion);
 var NS4 = (bName == "Netscape" && bVer >= 4);
 var IE4 = (bName == "Microsoft Internet Explorer" 
 && bVer >= 4);
 var NS3 = (bName == "Netscape" && bVer < 4);
 var IE3 = (bName == "Microsoft Internet Explorer" 
 && bVer < 4);
function f_flyShowWindow(id,placeholderid){
   var oFlyWindow = document.getElementById(id);
   if(oFlyWindow == null){
       return false;
   }
   var oPlaceholder = document.getElementById(placeholderid);
   oFlyWindow.style.display = "";      
   var iY = oPlaceholder.offsetTop + 30;
   var tbl = document.getElementById('tblDefault');   
   if(IE4){
    var Top = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;
	if (Top + iY + oFlyWindow.offsetHeight < tbl.offsetHeight) 
	    oFlyWindow.style.top = Top + iY + 'px';
	else
	    oFlyWindow.style.top = tbl.offsetHeight - oFlyWindow.offsetHeight + 'px';
   }else{
     oFlyWindow.style.top = iY + "px";            
  }
   window.status =  oFlyWindow.style.top + "," + Top;
   oFlyWindow.style.visibility = "visible";
}
				 
