function show_header() {

document.write(
'<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0 height="80"><TBODY>'+
'<TR><TD vAlign=bottom width=260 height=77><a href="/index.html"><img border="0" src="/images/logo.gif"></a></TD>'+
'<TD align=left height="77">'+
  
'</TD></TR></TBODY></TABLE>'+


'<TABLE cellSpacing=0 cellPadding=0 background=images/bg_menu.gif border=0 width="100%"><TBODY><TR>'+
'<TD style="PADDING: 5px" align="center"><a href="index.html"><SPAN class=menuTopActiv>Home</SPAN></a></TD>'+
'<TD class=colorMenu width=1><IMG height=1 src="/images/1x1.gif" width=1 border=0></TD>'+
'<TD style="PADDING: 5px" align="center"><a href="powerpoint_template.html"><SPAN class=menuTopActiv>Powerpoint Templates</SPAN></a></TD>'+
'<TD class=colorMenu width=1><IMG height=1 alt="" src="/images/1x1.gif" width=1 border=0></TD>'+
'<TD style="PADDING: 5px" align="center"><a href="webdesign_template.html"><SPAN class=menuTopActiv>Webdesign Templates</SPAN></a></TD>'+
'<TD class=colorMenu width=1><IMG height=1 alt="" src="/images/1x1.gif" width=1 border=0></TD>'+
'<TD style="PADDING: 5px" align="center"><a href="flash_template.html"><SPAN class=menuTopActiv>Flash Templates</SPAN></a></TD>'+
'<TD class=colorMenu width=1><IMG height=1 alt="" src="/images/1x1.gif" width=1 border=0></TD>'+
'<TD style="PADDING: 5px" align="center"><a href="contactus.html"><SPAN class=menuTopActiv>Support</SPAN></a></TD>'+
'<TD class=colorMenu width=1><IMG height=1 alt="" src="/images/1x1.gif" width=1 border=0></TD>'+
'<TD style="PADDING: 5px" align="center"><a href="aboutus.html"><SPAN class=menuTopActiv>About us</SPAN></a></TD>'+
'<TD class=colorMenu width=1><IMG height=1 alt="" src="/images/1x1.gif" width=1 border=0></TD>'+
'<TD style="PADDING: 5px" align="center"><a href="sitemap.html"><SPAN class=menuTopActiv>Site map</SPAN></a></TD>'+
'<TD class=colorMenu width=1><IMG height=1 alt="" src="/images/1x1.gif" width=1 border=0></TD>'+
'</TD></TR></TBODY></TABLE>'
);

}
//'<TD style="PADDING: 5px" background=/images/bg_menu.gif align="center">'+

function show_before_path() {
document.write(
'<TABLE cellSpacing=0 cellPadding=1 width="100%" border=0><TBODY>'+
'<TR><TD class=colorMenu vAlign=top><IMG height=2 src="images/1x1.gif" width=1 border=0></TD></TR></TBODY></TABLE>'+
'<TABLE cellSpacing=0 cellPadding=1 width="100%" border=0><TBODY>'+
'<TR><TD bgColor=#eeeeee>'+
'<TABLE cellSpacing=0 cellPadding=2 width="100%" border=0><TBODY>'+
'<TR bgColor=#ffffff><TD align=left>'+
'<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0><TBODY>'+
'<TR><TD noWrap>'
);
}


function show_after_path() {
document.write(
'</TD></TR></TBODY></TABLE></TD>'+
'<TD class=naviText align=right></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>'+
'<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0><TBODY>'+
'<TR><TR><TD class=colorMenu vAlign=top><IMG height=5 src="images/1x1.gif" width=1 border=0></TD></TR></TBODY></TABLE>'
);
}


function show_path() {
var path = "";
var href = document.location.href;
var s = href.split("/");
if (s[3]!="cgi-bin"){
for (var i=2;i<(s.length-1);i++) {
path+="<A class=naviText HREF=\""+href.substring(0,href.indexOf(s[i])+s[i].length)+"/\">"+s[i]+"</A><span class=naviText> / </span>";
}
i=s.length-1;
path+="<A class=naviText HREF=\""+href.substring(0,href.indexOf(s[i])+s[i].length)+"\">"+s[i]+"</A>";
var url = "<span class=naviText>You are here >> </span>" + path;
document.writeln(url);
}}

show_header();
show_before_path();
show_path();
show_after_path();
