

/***********************************************************************
	Function to Get the Text for Upcoming Offers
***********************************************************************/

function GetUpComingOffersText( _OfferNameFromFlash )
{
	var _UpComingOfferText		=	'';
	var ObjUpComingOfferDiv		=	document.getElementById("UpcomingOfferDiv");
	var _OfferHeading			=	'';

	var _StringFromFlash		=	new String();
	_StringFromFlash			=	_OfferNameFromFlash;
	_OfferNameFromFlash			=	_StringFromFlash.toUpperCase();	

	switch ( _OfferNameFromFlash )
	{
												
		case 'PPDAQ'	:		
			_OfferHeading		=	_OfferHeading + "PPDAQ";
			_UpComingOfferText  =   _UpComingOfferText + "PPDAQ, www.ppdaq.com, is an Online Exchange dedicated to providing Primary & Secondary Market Trading to companies needing Private Placements for startup and development and to assist existing funded companies with access to the Secondary Market.<br><br>";
			_UpComingOfferText  =   _UpComingOfferText + "PPDAQ is a Micro Exchange forming part of the Alternative Electronic Stock Exchange, www.aesx.com, that provides the Back Office support and Infrastructure. The PPDAQ Exchange is a Self Regulated Organization (SRO) using the AESX Platforms AVV Rule Book for its Regulatory Guidance and Control.<br><br/>";
			_UpComingOfferText  =   _UpComingOfferText + "A distinctive and unique aspect of the Exchange is that access to Trading Activities is restricted to Qualified Professional Entities or Individuals as defined by the Self Regulatory regime. Depending on the jurisdiction of the Listing Company or Qualified Investors, restrictions may apply.<br><br/>";
			_UpComingOfferText  =   _UpComingOfferText + "For further information about PPDAQ please visit us at <a href='http://www.ppdaq.com' target='_blank'>www.ppdaq.com</a> or email <a href=mailto:'admin@ppdaq.com'>admin@ppdaq.com</a>.<br><br/>";
			break;	

		case 'VC2O'	:		
			_OfferHeading		=	'VC20';
			_UpComingOfferText  =   _UpComingOfferText + "VC20 aims to be the next generation of microfinance. The principal objective is to create and deliver channels to market which can effectively and usefully use the available funding to aid Venture, Challenge, Change & Opportunity.<br><br/>";
			break;
		
		case '1ST3RD'	:		
			_OfferHeading		=	'1st 3rd';
			_UpComingOfferText  =   _UpComingOfferText + "1st 3rd is a person to person web based environment, designed to link concerned first world people, families or groups with needy opposite numbers in the third world. It provides the communications, infrastructural and payment medium that keeps connected parties in direct touch.<br><br/>";
			break;	
			
		case 'BANDWAY'	:		
			_OfferHeading		=	'BANDWAY';
			_UpComingOfferText  =   _UpComingOfferText + "Whilst Internet connectivity has become both ubiquitous and essential in the developed world, there are vast areas where it cannot reach because of distance from resources, low populations, impossible terrain, absence of power, lack of viability and insufficient technological solutions. Bandway seeks to deliver a ";	_UpComingOfferText  =   _UpComingOfferText + '"'+ "subnet" + '"'; 
			_UpComingOfferText  =   _UpComingOfferText + ", being the most essential subset components of Internet to these areas.<br><br/>";
			break;
	
		case 'WASEI'	:		
			_OfferHeading		=	'WASEI';
			_UpComingOfferText  =   _UpComingOfferText + "WASEI:  Socially Responsible, Environmentally Sound, And Economically Viable ";
			_UpComingOfferText  =   _UpComingOfferText + "West Africa Sustainable Economic Initiative (WASEI) expands the services of the existing MFI sector, in order to multiply the impact of micro-enterprises on the economic growth of the community. WASEI provides venture capital and comprehensive business incubation services to small businesses in West Africa. "; 			_UpComingOfferText  =   _UpComingOfferText + "In addition to building the capacity and profitability of existing businesses, WASEI will introduce and fund viable, profitable, and appropriate green businesses to qualified entrepreneurs. We will enable our micro venture partners to increase the value of their business asset while supporting grass roots economic development. "			_UpComingOfferText  =   _UpComingOfferText + "Our social mission, " + '"' + "...building sustainable communities, one business at a time." + '"' + "<br><br/>";
			break;

												
		default:		
			_OfferHeading		=	'';		
			_UpComingOfferText	=	'';
			break;
	}

	if ( ObjUpComingOfferDiv )
		UpcomingOfferDiv.style.display  =   '';
		ObjUpComingOfferDiv.innerHTML	=	GetUpComingOffersInnerHtml(_OfferHeading, _UpComingOfferText);
	
	return ObjUpComingOfferDiv.innerHTML;	
	
}

/***********************************************************************
	Function to Get the Text for Upcoming Offers
***********************************************************************/

function GetUpComingOffersInnerHtml( _OfferNameFromFlash, _OfferText )
{

	var _UpComingOfferText		=	'';
	_UpComingOfferText			=	_UpComingOfferText + "<TABLE cellSpacing='0' cellPadding='0' WIDTH='545px'height='232px' class='RegContentTableBorder'>";
	_UpComingOfferText			=	_UpComingOfferText + "<TR>";
	_UpComingOfferText			=	_UpComingOfferText + "<TD height='20px' valign='middle' bgcolor='#1b7ccd' class='Topicname'>" + _OfferNameFromFlash + "</TD>";
	_UpComingOfferText			=	_UpComingOfferText + "</TR>";
	_UpComingOfferText			=	_UpComingOfferText + "<TR>";
	_UpComingOfferText			=	_UpComingOfferText + "<TD align='left' valign='top'>";
	_UpComingOfferText			=	_UpComingOfferText + "<Table width='100%' height='100%' cellspacing='0' cellpadding='2'>";			
	_UpComingOfferText			=	_UpComingOfferText + "<TR>";
	_UpComingOfferText			=	_UpComingOfferText + "<TD align='left' valign='top' class='OfferTextCom'>" + _OfferText + "<TD>";
	_UpComingOfferText			=	_UpComingOfferText + "</TR>";
			
	_UpComingOfferText			=	_UpComingOfferText + "</Table>";	
	_UpComingOfferText			=	_UpComingOfferText + "</TD>";
	_UpComingOfferText			=	_UpComingOfferText + "</TR>";
	_UpComingOfferText			=	_UpComingOfferText + "<TR>";
	_UpComingOfferText			=	_UpComingOfferText + "<TD height='20px' width='100%' valign='middle' align='center' class='Sharemainheading'></TD>";
	_UpComingOfferText			=	_UpComingOfferText + "</TR>";
	_UpComingOfferText			=	_UpComingOfferText + "</TABLE>";	

	return _UpComingOfferText;
	
}
