var _cssnormalstyle = "riteborsmltext";
var _cssalternatingstyle = "litebluebkgritebor";

function DisplayTable(){
	//get a handle on the source table 
	if ( document.getElementById("pnlBuyerContent").getElementsByTagName("table").length > 0 ){
		var osource = document.getElementById("pnlBuyerContent").getElementsByTagName("table")[0].childNodes[0];
		var odestination = document.getElementById("tblSpotyourbuyer").childNodes[0];
		//loop through all the table rows of the source table
		for ( var i = 1; i < osource.childNodes.length; i ++ ){
			var oitem = osource.childNodes[i].cloneNode(true);
			var _hasContents = false;
			var oitemcols = oitem.getElementsByTagName("td");
			for ( var ii = 0; ii < oitemcols.length; ii ++ ){
				oitemcols[ii].className = ( i % 2 == 0 ? _cssalternatingstyle : _cssnormalstyle );
				if ( oitemcols[ii].innerHTML.length > 0 ){
					_hasContents = true;
				}
			}
			if ( _hasContents) { odestination.appendChild( oitem ); }
		} 
	}
}