﻿var intNabisalertTimeOut;

function fn_Nabis_Scroll_In(StrObjName, IntScroll) {
   
    var ObjDiv = document.getElementById(StrObjName);

    if (IntScroll == 0) { IntScroll = parseInt(ObjDiv.style.top); }
    
    IntScroll = IntScroll + (1 * 10);
    ObjDiv.style.top = IntScroll + 'px';
    
    window.clearTimeout(intNabisalertTimeOut);
	if (IntScroll<=-2) {	    
	    intNabisalertTimeOut = window.setTimeout("fn_Nabis_Scroll_In('" + StrObjName + "'," + IntScroll + ")", 100);		
		} 	
}


