document.write('<td  width="20%" height="100%" valign="top" bgcolor="#dddddd">');
	
			 document.write(' <div class="roundcontleft" height="100%"><div class="roundtopleft" height="100%"><img src="/2007/images/left1.gif" alt="" width="15" height="15" class="corner" style="display: none"/></div> ');
		
		  document.write('<table bgcolor="#670B0D" width="100%" border="0" cellspacing="0" cellpadding="6"  height="100%"><tr><td valign="top" bgcolor="#670B0D"><table bgcolor="#670B0D" width="100%" border="0" cellspacing="0" cellpadding="5">');
	// document.write('<tr><td valign="top"><span class="head1"><a href="/2007/index.htm" class="leftlink">Home</a></span></td></tr>');
        document.write(' <tr><td>');
 document.write(' <a href="/2007/index.htm" class="leftlink" style="line-height: 30px;">Home</a><br>');
 document.write('<div style="float: left" id="my_menu" class="sdmenu">');
      /*document.write('<div>');
       
      document.write('</div>');	*/
	  document.write('<div>');
document.write(' <span>Conference </span>');
document.write(' <a href="/2007/theme.htm">Themes</a>');		
document.write(' <a href="/2007/keynote.htm"> Plenary Session </a>');
document.write(' <a href="/2007/seminer.htm">Seminar </a>');
document.write(' <a href="/2007/workshop.htm">Workshop</a>');
document.write(' <a href="/2007/callforpaper.htm">Call for Papers</a>');
//document.write(' <a href="/2007/session.htm">Session</a>');
document.write(' <a href="/2007/Conferencefee.htm">Conference Fee</a>');
document.write(' <a href="/2007/Mregister.asp">Registration Form</a>');
document.write(' <a href="/2007/programme.htm">Programme Schedule </a>');
document.write(' <a href="/2007/abstract.htm">Submit Papers </a>');
document.write('</div><table height=11><tr><td></td></tr></table>');
      document.write('<div>');
       document.write(' <span>Exhibition</span>');
       document.write('<a href="/2007/exhibition.htm"> Exhibition Details</a>');
       // document.write('<a href="/2007/exhibitorprofile.htm">Exhibitor Profile</a>');
	   document.write('<a href="/2007/exhibitionform.htm">Exhibition Booking Form</a>');
  document.write('<a href="/2007/EXBregister.asp">Exhibitor Registration Form</a>');
      document.write('</div>');
	   document.write('<table height=11><tr><td></td></tr></table></div>'); 
	   //document.write('<div>');
document.write(' <a href="/2007/generalinfo.htm" class="leftlink">General Information</a><br><br>');
        // document.write('</div>');
     // document.write('<div>');
       document.write('<a href="/2007/organiser.htm" class="leftlink">Organisers</a><bR><br>');
        //document.write('</div>');
		// document.write(' <div>');
        document.write('<a href="/2007/contact.htm" class="leftlink">Contacts</a><br><br>');
        /*document.write('</div>');
		  document.write('<div>');*/
        document.write('<a href="/2006/index.htm" target="_blank" class="leftlink">Archive</a>');
        /*document.write('</div>');*/
   
	document.write('</table>');
	  document.write(' </td></tr></table>');
	  	 document.write('<div class="roundbottomleft"><img src="/2007/images/left4.gif" alt="" width="15" height="15" class="corner" style="display: none" /></div></div>');
	 document.write('<br><table width="100%" border="0" cellspacing="0" cellpadding="0"> ');
         document.write('<tr><td  width="40%"><div class="roundcontright"><div class="roundtopright"><img src="/2007/images/r1.gif" alt="" width="15" height="15" class="corner" style="display: none"/></div>');
		  	 document.write('<table width="100%" bgcolor="#AB6E65" border="0" cellspacing="0" cellpadding="10">');
        document.write(' <tr><td><span class="blackver12">Map Africa 2007 Secretariat<br /> Room No 209<br />Vander Sterr Building<br />Rhodes Avenue<br/>Mobray 7705 <br />Pravate Bag x10<br />South Africa<br/>Fax:+27 865039510<br />Tel: + 27 21 6584348 <br> &nbsp; &nbsp; &nbsp; &nbsp; +27 79 1843235<br/>Email: <a href="mailto:info.mapafrica@gisdevelopment.net">info.mapafrica@gisdevelopment.net</a> </span></td></tr></table>');
				 document.write('<div class="roundbottomright"><img src="/2007/images/r4.gif" alt="" width="15" height="15"class="corner" style="display: none" /></div></div>');
    document.write('</td></tr></table> ');
	document.write('</td><td bgcolor="#ffffff" height="100%"></td>');
	
	


function SDMenu(id) {
	if (!document.getElementById || !document.getElementsByTagName)
		return false;
	this.menu = document.getElementById(id);
	this.submenus = this.menu.getElementsByTagName("div");
	this.remember = true;
	this.speed = 3;
	this.markCurrent = true;
	this.oneSmOnly = false;
}
SDMenu.prototype.init = function() {
	var mainInstance = this;
	for (var i = 0; i < this.submenus.length; i++)
		this.submenus[i].getElementsByTagName("span")[0].onclick = function() {
			mainInstance.toggleMenu(this.parentNode);
		};
	if (this.markCurrent) {
		var links = this.menu.getElementsByTagName("a");
		for (var i = 0; i < links.length; i++)
			if (links[i].href == document.location.href) {
				links[i].className = "current";
				break;
			}
	}
	if (this.remember) {
		var regex = new RegExp("sdmenu_" + encodeURIComponent(this.menu.id) + "=([01]+)");
		var match = regex.exec(document.cookie);
		if (match) {
			var states = match[1].split("");
			for (var i = 0; i < states.length; i++)
				this.submenus[i].className = (states[i] == 0 ? "collapsed" : "");
		}
	}
};
SDMenu.prototype.toggleMenu = function(submenu) {
	if (submenu.className == "collapsed")
		this.expandMenu(submenu);
	else
		this.collapseMenu(submenu);
};
SDMenu.prototype.expandMenu = function(submenu) {
	var fullHeight = submenu.getElementsByTagName("span")[0].offsetHeight;
	var links = submenu.getElementsByTagName("a");
	for (var i = 0; i < links.length; i++)
		fullHeight += links[i].offsetHeight;
	var moveBy = Math.round(this.speed * links.length);
	
	var mainInstance = this;
	var intId = setInterval(function() {
		var curHeight = submenu.offsetHeight;
		var newHeight = curHeight + moveBy;
		if (newHeight < fullHeight)
			submenu.style.height = newHeight + "px";
		else {
			clearInterval(intId);
			submenu.style.height = "";
			submenu.className = "";
			mainInstance.memorize();
		}
	}, 30);
	this.collapseOthers(submenu);
};
SDMenu.prototype.collapseMenu = function(submenu) {
	var minHeight = submenu.getElementsByTagName("span")[0].offsetHeight;
	var moveBy = Math.round(this.speed * submenu.getElementsByTagName("a").length);
	var mainInstance = this;
	var intId = setInterval(function() {
		var curHeight = submenu.offsetHeight;
		var newHeight = curHeight - moveBy;
		if (newHeight > minHeight)
			submenu.style.height = newHeight + "px";
		else {
			clearInterval(intId);
			submenu.style.height = "";
			submenu.className = "collapsed";
			mainInstance.memorize();
		}
	}, 30);
};
SDMenu.prototype.collapseOthers = function(submenu) {
	if (this.oneSmOnly) {
		for (var i = 0; i < this.submenus.length; i++)
			if (this.submenus[i] != submenu && this.submenus[i].className != "collapsed")
				this.collapseMenu(this.submenus[i]);
	}
};
SDMenu.prototype.expandAll = function() {
	var oldOneSmOnly = this.oneSmOnly;
	this.oneSmOnly = false;
	for (var i = 0; i < this.submenus.length; i++)
		if (this.submenus[i].className == "collapsed")
			this.expandMenu(this.submenus[i]);
	this.oneSmOnly = oldOneSmOnly;
};
SDMenu.prototype.collapseAll = function() {
	for (var i = 0; i < this.submenus.length; i++)
		if (this.submenus[i].className != "collapsed")
			this.collapseMenu(this.submenus[i]);
};
SDMenu.prototype.memorize = function() {
	if (this.remember) {
		var states = new Array();
		for (var i = 0; i < this.submenus.length; i++)
			states.push(this.submenus[i].className == "collapsed" ? 0 : 1);
		var d = new Date();
		d.setTime(d.getTime() + (30 * 24 * 60 * 60 * 1000));
		document.cookie = "sdmenu_" + encodeURIComponent(this.menu.id) + "=" + states.join("") + "; expires=" + d.toGMTString() + "; path=/";
	}
};