function getDbProperties()
{
	//return "C:\\Program Files\\Apache Group\\Tomcat 4.1.7\\kalam_org\\WEB-INF\\classes\\com\\RB\\Common\\db.properties";
	return "d:\\Tomcat 4.1.7\\kalam_org\\WEB-INF\\classes\\com\\RB\\Common\\db.properties";
}

function getUploadPath()
{
	//return "C:/Program Files/Apache Group/Tomcat 4.1.7/webapps/kalam_org/Upload/";
	//return "d:/Tomcat 4.1.7/webapps/kalam_org/Upload/";
	  //return "d:/jboss-4.2.1.GA/server/default/deploy/kalam.war/Upload/";
	  //CHANGE ON 18-3-2009 BY RAJKUMAR
	  return "D:/jboss-4.0.2/server/default/deploy/kalam.war/Upload/";
}


function getUploadImagePath()
{
	return "/D:/jboss-4.0.2/server/default/deploy/kalam.war/kalamphotos/";
}

function getDownloadPath()
{
	//return "http://192.168.101.11:8080/kalam_org/Upload/";
	//return "http://localhost:8080/kalam_org/Upload/";
	return "http://localhost/kalam_org/Upload/";
}

function moveToLink(linking_url)
{
	document.location.href	= linking_url;
}

function hoverLeftLink(menu_row_object)
{
	if(left_menu_table != null)
	{
		if(left_menu_table.length == null || left_menu_table.length == 0)
		{
			left_menu_table.rows[0].style.backgroundColor = '#ffffff';
			left_menu_table.rows[0].style.color = "black";
		}
		else
		{
			for(var a=0;a<left_menu_table.length;a++)
			{
				left_menu_table[a].rows[0].style.backgroundColor = '#ffffff';
				left_menu_table[a].rows[0].style.color = "black";
			}
		}

		menu_row_object.style.backgroundColor = "#eeeeee";
		menu_row_object.style.color = "#005050";
	}
}

function clearLeftLink()
{
	if(left_menu_table != null)
	{
		if(left_menu_table.length == null || left_menu_table.length == 0)
		{
			left_menu_table.rows[0].style.backgroundColor = '#ffffff';
			left_menu_table.rows[0].style.color = "black";
		}
		else
		{
			for(var a=0;a<left_menu_table.length;a++)
			{
				left_menu_table[a].rows[0].style.backgroundColor = '#ffffff';
				left_menu_table[a].rows[0].style.color = "black";
			}
		}
	}
}

function hoverRightLink(menu_row_object)
{
	if(right_menu_table != null)
	{
		if(right_menu_table.length == null || right_menu_table.length == 0)
		{
			right_menu_table.rows[0].style.backgroundColor = '#ffffff';
			right_menu_table.rows[0].style.color = "black";
		}
		else
		{
			for(var a=0;a<right_menu_table.length;a++)
			{
				right_menu_table[a].rows[0].style.backgroundColor = '#ffffff';
				right_menu_table[a].rows[0].style.color = "black";
			}
		}

		menu_row_object.style.backgroundColor = "#eeeeee";
		menu_row_object.style.color = "#005050";
	}
}

function clearRightLink()
{
	if(right_menu_table != null)
	{
		if(right_menu_table.length == null || right_menu_table.length == 0)
		{
			right_menu_table.rows[0].style.backgroundColor = '#ffffff';
			right_menu_table.rows[0].style.color = "black";
		}
		else
		{
			for(var a=0;a<right_menu_table.length;a++)
			{
				right_menu_table[a].rows[0].style.backgroundColor = '#ffffff';
				right_menu_table[a].rows[0].style.color = "black";
				//right_menu_table[a].rows[0].color = "#eeeeee";
			}
		}
	}
}

/*************************************************************************
//The below functionality is simple and common, Please follow this here
//after if we want to change the color of font or background on MouseOver

//Argument is the current object - this
*************************************************************************/
function changeMyColor(source_object)
{
	source_object.style.color = "navy";
}

function setMyNormalColor(source_object)
{
	source_object.style.color = "#000000";
}

