function setBg(level, group){
	newPath = "";
	switch(level){
		case 0:
			newPath = "";
			break;
		case 1:
			newPath = "../";
			break;
		case 2:
			newPath = "../../";
			break;
	}
	
	switch(group){
		case 'home':
			document.getElementById('navhome').style.backgroundImage = "url(" + newPath + "images/tab_blue.gif)";
			break;
		case 'car':
			document.getElementById('navcar').style.backgroundImage = "url(" + newPath + "images/tab_blue.gif)";
			break;
		case 'van':
			document.getElementById('navvan').style.backgroundImage = "url(" + newPath + "images/tab_blue.gif)";
			break;
		case 'bike':
			document.getElementById('navbike').style.backgroundImage = "url(" + newPath + "images/tab_blue.gif)";
			break;
		case 'house':
			document.getElementById('navhomeinsurance').style.backgroundImage = "url(" + newPath + "images/tab_blue.gif)";
			break;
		case 'travel':
			document.getElementById('navtravelinsurance').style.backgroundImage = "url(" + newPath + "images/tab_blue.gif)";
			break;
	}
}


function openNewWindow(theURL, winName, features){
  window.open(theURL, winName, features);
}