
	function sStop()
{
	scrollerS.scrollAmount=0
}
function sStart()
{
	scrollerS.scrollAmount=1
}


    var frmSent;
    function resizeFrame(obj,h)
    {
        try
        {
            if(h > 0)
            {
              if(navigator.appVersion.indexOf("MSIE 6.0") > 0)
                {
                   frmSent.style.height =  h;
                }
               else
                {
                   frmSent.style.height =  h;
                }  
            }
            else
            {
               if(navigator.appVersion.indexOf("MSIE 6.0") > 0)
                {
                   //obj.style.height = 1000 + "px";
                   obj.style.height =  obj.contentWindow.document.body.scrollHeight + 60;
                   frmSent = obj;
                }
               else
                {
                   obj.style.height =  obj.contentWindow.document.body.scrollHeight + 60;
                   frmSent = obj;
                }
            }
        }
        catch(err) {  }
    }
