


function draw_snav_header(sImagePath,sTitle) {	
	document.write("<table cellspacing='0' cellpadding='0' border='0' width='100%'>");
	document.write("<tr>");
	document.write("<td valign='top' width='7'><img src='"+sImagePath+"g_boxlefttoptitlecorner_l.gif'></td>");
	document.write("<td background='"+sImagePath+"g_boxlefttoptitle_m.gif' class='t_boxLeftTopTitle l_boxLeftTopTitle' width='100%'>"+sTitle+"</td>");
	document.write("<td valign='top' width='7'><img src='"+sImagePath+"g_boxlefttoptitlecorner_r.gif'></td>");
	document.write("</tr>");
	document.write("</table>");
	document.write("<table cellspacing='0' cellpadding='0' border='0' width='160'>");
	document.write("<tr>");
	document.write("<td class='t_boxLeftTop l_boxLeftTop'>");
	document.write("<table cellspacing='0' cellpadding='0' border='0' width='143'>");
}

function draw_snav_item(pImagePath,pTitle,pUri) {
	document.write("<tr>");
	document.write("<td valign='top' width='20'><img src='"+pImagePath+"bullet.gif'></td>");
	if (pUri == "") {
	   document.write("<td valign='top' class='t_boxLeftTop'>"+pTitle+"</td>");
	} else {
	   document.write("<td valign='top' class='t_boxLeftTop'><a href='"+pUri+"' class='t_boxLeftTopLink'>"+pTitle+"</a></td>");
	}

	document.write("</tr>");
	document.write("<tr>");
	document.write("<td colspan='2'><img src='/images/trans.gif' height='10' width='1'></td>");
	document.write("</tr>");
}

function draw_snav_textitem(pImagePath,pTitle,pUri) {
	document.write("<tr>");
//	document.write("<td valign='top' width='20'><img src='/images/trans.gif' height='10' width='1'></td>");
//	if (pUri == "") {
	   document.write("<td valign='top' class='t_boxLeftTop'>"+pTitle+"</td>");
//	} else {
//	   document.write("<td valign='top' class='t_boxLeftTop'><a href='"+pUri+"' class='t_boxLeftTopLink'>"+pTitle+"</a></td>");
//	}

	document.write("</tr>");
	document.write("<tr>");
	document.write("<td colspan='2'><img src='/images/trans.gif' height='10' width='1'></td>");
	document.write("</tr>");
}

function draw_snav_newsitem(pImagePath,pTitle,pUri) {
   var TxtMore = "meer";
	switch (snavLanguage) {
	    case "en":	
			TxtMore 		= "more";
			break;
	    case "de":	
			TxtMore 		= "more";
			break;
	}	
	document.write("<tr>");
	document.write("<td valign='top' width='20'><img src='"+pImagePath+"bullet.gif'></td>");
	if (pUri == "") {
	   document.write("<td valign='top' class='t_boxLeftTop'>"+pTitle+"</td>");
	} else {
	   document.write("<td valign='top' class='t_boxLeftTop'>"+pTitle+"&nbsp;<a href='"+pUri+"' class='t_boxLeftTopLink'><b>"+TxtMore+" &raquo;</b></a></td>");
	}
	/*if (pUri == "") {
	   document.write("<td valign='top' class='t_boxLeftTop'>"+pTitle+"</td>");
	} else {
	   document.write("<td valign='top' class='t_boxLeftTop'><a href='"+pUri+"' class='t_boxLeftTopLink'>"+pTitle+"</a></td>");
	}*/

	document.write("</tr>");
	document.write("<tr>");
	document.write("<td colspan='2'><img src='/images/trans.gif' height='10' width='1'></td>");
	document.write("</tr>");
}

/*document.write("<tr>");
document.write("<td valign='top' width='10'><img src='/about/img/bullet.gif'></td>");
document.write("<td valign='top' class='t_boxLeftTop'><a href='/about/organisation.html' class='t_boxLeftTopLink'>Organisation</a></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td colspan='2'><img src='/img/trans.gif' height='10' width='1'></td>");
document.write("</tr>");*/

function draw_snav_footer() {
	document.write("</table>");
	document.write("</td>");
	document.write("</tr>");
	document.write("</table>");
	document.write("<br><br>");	
}