
var showcount=0;

function  showmore(SFeatures,BFeatures)
{
	var fmore;
	showcount++;
	
	if ((showcount % 2)==0)
		fmore="";
	else
	{
		fmore="<table width='439'  border='0' cellpadding='0' class='text11px' bgcolor='#EEEEEE' cellspacing='0' style='padding-left=10px;'>";
		fmore+="<tr><td valign='top'>";

		if (SFeatures!="") 
		{
			fmore+="<b>Apartment Features</b><br>" + SFeatures +"<br><br>";
		}


		if (BFeatures!="") {
			fmore+="<b>Building Features</b><br>" + BFeatures + "<br>&nbsp;";
		}

		fmore+="</td></tr>";
		fmore+="</table>";
	}

	if(document.all)
	{
		LblMore.innerHTML=fmore;
	}
	else {
		//netscape
		var Morelayer
		Morelayer = document.getElementById("LblMore")
		Morelayer.innerHTML =fmore;

	}
}






function  showlinks()
{
	var fmore;
	
	showcount++;
	
	if ((showcount % 2)==0)
		fmore="";
	else
	{	
		fmore="<a class=\"graylink\" href=\"/property/nd/development_list.asp?page=8\"><span class=\"text11px\">Manhattan</span></a><br>";
		//fmore+="<a class='graylink' href='/property/nd/development_list.asp?page=8'><span class='text11px'>Manhattan</span></a><br>";
		//fmore+="<a class='graylink' href='/property/nd/development_list.asp?page=8'><span class='text11px'>Manhattan</span></a><br>";
		//fmore+="<a class='graylink' href='/property/nd/development_list.asp?page=8'><span class='text11px'>Manhattan</span></a><br>";
	}
	
	//alert(fmore);
	
	if(document.all)
	{
		alert(fmore);
		LblMore.innerHTML=fmore;
	}

	
}