function changeBgColor(control, color)
{
	control.style.backgroundColor=color;
}

function changeBgImage(control, imagePath)
{
	control.style.backgroundImage='url(' + imagePath + ')';
}
function navigateTo(url)
{
	 window.location=url;
}