
function fnLogSet(Depth1,Depth2)
{
	var strUrl = "";
	//alert(Depth1+" : "+Depth2);
	switch(Depth1)
	{
		case "0" : // ourstory
			switch(Depth2)
			{
				case "1" : strUrl = "/logfile/1_1.html";	break;
				case "2" : strUrl = "/logfile/1_2.html";	break;
				case "3" : strUrl = "/logfile/1_3.html";	break;
				case "4" : strUrl = "/logfile/1_4.html";	break;
				case "5" : strUrl = "/logfile/1_5.html";	break;
				case "6" : strUrl = "/logfile/1_6.html";	break;
				case "7" : strUrl = "/logfile/1_7.html";	break;
				case "8" : strUrl = "/logfile/1_8.html";	break;
				case "9" : strUrl = "/logfile/1_9.html";	break;
				case "10" : strUrl = "/logfile/1_10.html";	break;
				case "11" : strUrl = "/logfile/1_11.html";	break;
				case "12" : strUrl = "/logfile/1_12.html";	break;
				case "13" : strUrl = "/logfile/1_13.html";	break;
			}
			
			break;

		case "1" : // our story
			switch(Depth2)
			{
				case "1" : strUrl = "/logfile/1_1.html";	break;
				case "2" : strUrl = "/logfile/1_2.html";	break;
				case "3" : strUrl = "/logfile/1_3.html";	break;
				case "4" : strUrl = "/logfile/1_4.html";	break;
				case "5" : strUrl = "/logfile/1_5.html";	break;
			}
			
			break;
			
		case "2" : // financial
			switch(Depth2)
			{
				case "1" : strUrl = "/logfile/2_1.html";	break;
				case "2" : strUrl = "/logfile/2_2.html";	break;
				case "3" : strUrl = "/logfile/2_3.html";	break;
				case "4" : strUrl = "/logfile/2_4.html";	break;
			}
			
			break;
			
		case "3" : // join us
			switch(Depth2)
			{
				case "1" : strUrl = "/logfile/3_1.html";	break;
				case "2" : strUrl = "/logfile/3_2.html";	break;
				case "3" : strUrl = "/logfile/3_3.html";	break;
			}
			
			break;

		case "4" : // news
			strUrl = "/logfile/4_1.html";	break;
			
			break;
		
		default : strUrl = "/logfile/0_0.html";	break;
	}
	//alert(strUrl);
	document.getElementById('Logifrm').src = strUrl  ;

}


