﻿//Senthil.Kulandai  02-Aug-2007 Intial Version Created
//This file hold JS Util Funtions that is shared across the SpaceLift and 
//refered in all the three Master Pages
///************************************************************
//This function will navigate to the url passed in as parameter
///************************************************************
function NavigateToURL(strURL)
{
    window.location=strURL;
}
///************************************************************
//This function will set the InnerText of the Element Based on the Browser
///************************************************************
function SetObjectInnerText(obj,strText)
{	
	if(document.getElementById(obj))
	{	
		if(document.all)
			document.getElementById(obj).innerText = strText;
		else			
			document.getElementById(obj).textContent = strText;	
	}
}
///************************************************************
//This function will get the InnerText of the Element Based on the Browser
///************************************************************
function GetObjectInnerText(obj)
{	
	if(document.getElementById(obj))
	{	
		if(document.all)
			return document.getElementById(obj).innerText;
		else			
			return document.getElementById(obj).textContent;	
	}
}

