/* 	Copyright:	The Concorde Group 
	Project:	Web presence
	File: 		cncrd_news_js.js 
	Version: 	0.0 
	Description:	Javascript support file
*/

//------------------------------------- news listings ----------------------

var news= new Array(
"20081226|12/26/2008|DBL Holdings, LLC (dba Drexel Burnham Lambert) is marketing its private placement of $55 million in equity. <br><br>This press release shall not constitute an offer to sell or the solicitation of an offer to buy any security. The securities are being offered pursuant to an Offering Memorandum pursuant to Regulation D, Regulation S, and Rule 144A under the U.S. Securities Act. The securities have not been registered under any state securities laws. Neither the Securities and Exchange Commission nor any state securities commission has in any way passed upon the merits of, or given approval to, guaranteed or recommended the securities offered by DBL Holdings, LLC (dba Drexel Burnham Lambert) or the terms of the offering or has determined that the securities are exempt from registration, or made any finding that the statements in the offering memorandum are accurate or complete. <br><br>Safe Harbor Statement Under the Private Securities Litigation Reform Act of 1995. The matters discussed in this press release are forward-looking statements that involve a number of risks and uncertainties. Further information on Drexel's risk factors is contained in Drexel's offering memorandum.",
"business.timesonline.co.uk/tol/business/columnists/article3601631.ece|03/23/2008|Sunday Times London on Drexel.",
"20071119|11/19/2007|Drexel Burnham Lambert offers financial and business advisory services to lower middle market.",
"20050207|02/07/2005|Drexel Burnham Lambert (DBL) has launched a new web site."
)

//"20071213|12/13/2007|Drexel Burnham Lambert commenced a $40 million private placement of equity.",
//"20040121|01/21/2004|The Concorde Group, Inc. has signed a new long term lease for its corporate headquarters at 14 Wall Street, New York City."
// "20020311|03/11/2002|Guido A. Panzera, Esq. has joined the company as General Legal Counsel.",
// "20020813|08/13/2002|The Concorde Group, Inc. entered into a selling agreement with a New York-based investment banking firm.",
// "20020925c|09/26/2002|Jason C. Weigand has joined Concorde Financial Advisors, LLC, as Acting Chief Executive Officer.",
// "20020925d|10/10/2002|Flanagan Financial Group and Jason C. Weigand separately agreed to make an equity investment in The Concorde Group, Inc.",

maxnum    = news.length
showitems = maxnum 
startitem = 1

var lnkList = ''

function oldList(ll) {
    num =ll.length;
    var lnkList  = ""
    for (var i=startitem -1;i< startitem + showitems -1;i++ ) { 
	div = ll[i].indexOf('|')
	len = ll[i].length
	lnkAddr = ll[i].substring(0,div)
	lnkName = ll[i].substring(div + 1) 
	divd = lnkName.indexOf('|')
	lnkDate = lnkName.substring(0,divd)
	lnkName = lnkName.substring(divd + 1)
	lnkList += lnkDate + '<br>'
	if(lnkAddr.length <= 7) {
		lnkList += "<a href=\"javascript:popUpFrame('news/" + lnkAddr
		lnkList += ".html')\">" 	}
	else {
		lnkList += "<a href=\"" + lnkAddr	
		lnkList += "\">" 	
	}
	lnkList += lnkName  + "</a><br><br>\n"
    }
    lnkList += 'before<br><a HREF=\"arch_news.html\">Archived News</a><br><br>'
    document.write(lnkList)
}

function newsList(ll) {
    lnkList  = ""
    nList(ll,(startitem -1),(startitem + showitems -1)) 
//    lnkList += 'before<br><a HREF=\"arch_news.html\">Archived News</a><br><br>'
    document.write(lnkList)
}

function archList(ll) {
    lnkList  = ""
//   lnkList += 'back<br><a HREF=\"news.html\">Current News</a><br><br>'
    nList(ll,(startitem + showitems -1),maxnum ) 
    document.write(lnkList)
}

function nList(ll,start,num) {
    for (var i=start;i< num;i++ ) { 
	div = ll[i].indexOf('|')
	len = ll[i].length
	lnkAddr = ll[i].substring(0,div)
	lnkName = ll[i].substring(div + 1) 
	divd = lnkName.indexOf('|')
	lnkDate = lnkName.substring(0,divd)
	lnkName = lnkName.substring(divd + 1)
	lnkList += lnkDate + '<br>'
	if(div > 8) {
		lnkList += "<a href=\"http://" + lnkAddr
		lnkList += "\" TARGET=ext>" 	
	}
	else {
		lnkList += "<a href=\"javascript:popUpFrame('news/" 
		lnkList += lnkAddr
		lnkList += ".html')\">"
	}
	lnkList += lnkName  + "</a><br><br>\n"
    }
}

