////////////////////////////////////////////////////////////////
/////           LOADING BAR               //////////////////////
////////////////////////////////////////////////////////////////
var obj=document.getElementById("FrmLoading");
var processLoading  = function(){
	
    if(obj)
     {
        obj.style.top =(document.body.clientHeight-obj.height)/3;
        obj.style.left=(document.body.clientWidth-obj.width)/2;
        obj.style.display="block";
     }
}

var hideProcess  = function(){
	 if(obj)
     {
        obj.style.display="none";
     }
}