// JavaScript Document
function getdivLeft(divid)
{
	return $("#"+divid).offset().left ;
}

function GetIEType() 
{ 
     var OsObject = ""; 
    if(navigator.userAgent.indexOf("MSIE 6.0")>0) { 
         return 1; //MSIE 6.0
    }else if(navigator.userAgent.indexOf("MSIE 7.0")>0) { 
         return 2; //MSIE 7.0
    }else if(navigator.userAgent.indexOf("MSIE 8.0")>0) { 
         return 3; //MSIE 8.0
    } else
    {
        return 0;
    } 
   
} 
	 