function clicklink(el) {if (document.images) {(new Image()).src="/url.php?url="+el.href+"";} return true;}
function HideBox(Box) {if (document.getElementById(Box).style.display=='none') {document.getElementById(Box).style.display='';} else {document.getElementById(Box).style.display='none';}}
function doTooltip(msg) {this.T_SHADOWWIDTH=5;return escape(msg);}
function hideTip() {}
Google='<b>Google</b><br>The worlds most used Search Engine, Searching over 4 Billion web pages.';
MySpace='<b>MySpace</b><br>The #1 social networking website on the Net. Make Friends, Share Pictures, Join Groups, Make your own Blog and much more!';
eThinkTank='<b>E-ThinkTank</b><br>Think Tank on the development of Information and Communications Technology as the "infostructure" for socio-economic progress.';
NBC='<b>NBC</b><br>National Bank of Commerce Website.';
EasyWebbers='<b>EasyWebbers</b><br>EasyWebbers. The place for Webmasters.';
TheSuperficial='<b>The Superficial</b><br>The Superficial is a brutally honest look at society and its obsession with the superficial. It is not satire. It is not social commentary. It is the voice of our society at its worst. It is first impressions without sense of social obligation. It is the truth of our generation. It is ugly racism. It is jealousy. It is honest.';
X17='<b>X17 Online</b><br>The Ultimate Entertainment Blog.';
TIX='<b>Tanzania Internet Exchange</b><br>Tanzania Internet eXchange -- TIX -- first Internet Exchange in Tanzania, located in Posta House, Dar es Salaam.';
TZDomain='<b>Tanzania Domain Registration</b><br>Register your own co.tz/ne.tz/or.tz Domain For FREE.';
IAmBored='<b>i-am-bored</b><br>Are you bored? I-Am-Bored.com lists places to go when you are feeling bored.';
TheMafiaBoss='<b>TheMafiaBoss</b><br>TheMafiaBoss is a FREE web based massive multiplayer online game, based on the Real Mafia Life so called \'La Cosa Nostra\'.';
Hotmail='<b>MSN Hotmail</b><br>The worlds leading FREE email service provider.';
IPPMedia='<b>IPP Media</b><br>IPP Group of companies, Dar es Salaam. Tanzania\'s premiere information provider - Newspapers, Television and Radio. Daily, up to date content.';
Bongoza='<b>Bongoza</b><br>An East African search engine. Indexing over 58,000+ web pages &amp; business listings. Proudly Searching Bongoland!';
Yahoo='<b>Yahoo!</b><br>The best place to find whatever you want, Information, Entertainment News, Classifieds and much more.';
Wikipedia='<b>Wikipedia</b><br>The worlds free encyclopedia that anyone can edit!';
Xeraz='<b>Xeraz Web Solutions</b><br>Xeraz is the Leading solutions provider in Tanzania, Offering Quality and Affordable Hosting Solutions.';
BestPageInUniverse='<b>The Best Page in the Universe</b><br>The Best Damn Web Page in the Universe.<br><span style=\'color:red\'>Warning: This page may be offensive to some people!<\/span>';
AskMen='<b>AskMen</b><br>A men\'s online magazine offering the best advice on dating, secrets of love, celebrity biography, relationships and health.';
RSS='<b>RSS Feeds</b><br>RSS is a simple XML-based system that allows users to subscribe to their favorite websites. Using RSS, webmasters can put their content into a standardized format, which can be viewed and organized through a RSS-aware software (e.g. Firefox).';
Mahusiano='<b>Mahusiano.com</b><br>The Land of Bongo Flava Music. Listen to Bongo Flava Online.';
JamboTT='<b>Jambo! ThinkTank</b><br>An Online Discussion forum regarding ICT in Tanzania..';
Swahiliremix='<b>Swahili Remix</b><br>A new site showcasing Tanzania\'s Urban Culture Online with a focus on music.';
Ask='<b>Ask Youth Community</b><br>An online youth forum discussing religious and general issues.';
Facebook='<b>Facebook.com</b><br>Facebook is a social utility that connects you with the people around you. Facebook is made up of many networks, each based around a company, region, high school or college.';
LeoTena='<b>RSS Feeds</b><br>RSS is a simple XML-based system that allows users to subscribe to their favorite websites. Using RSS, webmasters can put their content into a standardized format, which can be viewed and organized through a RSS-aware software (e.g. Firefox).';



function GetPage(URL, DivE) {

if (window.ActiveXObject) {
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} else if (window.XMLHttpRequest) {
var xmlhttp = new XMLHttpRequest();
}

if (xmlhttp) { 
  d=document
  xmlhttp.open("GET", URL,true);
  xmlhttp.onreadystatechange= function () {
  
if (xmlhttp.readyState == 1) {
document.getElementById(DivE).style.display="block";
document.getElementById(DivE).innerHTML='<div align="center"><br><br><img src="spinner.gif"><br><br></div>';
}

if (xmlhttp.readyState == 4) {
document.getElementById(DivE).style.display="block";
document.getElementById(DivE).innerHTML=xmlhttp.responseText;
}


  }
  xmlhttp.send(null);
 }
}


function PostData(URL, DivE, PostVars) {

if (window.ActiveXObject) {
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} else if (window.XMLHttpRequest) {
var xmlhttp = new XMLHttpRequest();
}
if (xmlhttp) { 
  d=document
  xmlhttp.open("POST", URL,true);
  xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
  xmlhttp.send(PostVars);
  xmlhttp.onreadystatechange= function () {
  
if (xmlhttp.readyState == 1) {
document.getElementById(DivE).style.display="block";
document.getElementById(DivE).innerHTML='<div align="center"><br><br><img src="pinner.gif"><br><br></div>';
}

if (xmlhttp.readyState == 4) {
document.getElementById(DivE).style.display="block";
document.getElementById(DivE).innerHTML=xmlhttp.responseText;
}


}
  
}
}