function new_get(){

document.write("<TABLE width=\"354\" border=\"0\" cellspacing=\"1\" cellpadding=\"3\">\n");

//データなしの場合
if ( new_building_item.length == 0 && new_apartment_item.length == 0 && new_parking_item.length == 0 )
{
document.write("<TR valign=\"top\">\n");
document.write("<TD>現在、おすすめ物件情報はありません。</TD>\n");
document.write("</TR>\n");
document.write("</TABLE>\n");
document.close();
return;
}

recommend_count = 0;

//賃貸オフィス表示
for (var i = 0; i < new_building_item.length ; i++){

if ( new_building_item[i][11] == 'on' )
{
	writebuff = "→" + new_building_item[i][1] + "　" + new_building_item[i][3] + "　" + new_building_item[i][4];

	document.write("<TR valign=\"top\">\n");
	if (recommend_count%2 != 1){
	document.write("<TD bgcolor=\"#FFFFFF\">[賃貸オフィス]　<A href=\"" + buildingURL + new_building_item[i][10] + "\" class=\"newget\">" + writebuff + "</A></TD>\n");
	}
	else
	{
	document.write("<TD bgcolor=\"#FFF1E3\">[賃貸オフィス]　<A href=\"" + buildingURL + new_building_item[i][10] + "\" class=\"newget\">" + writebuff + "</A></TD>\n");
	}

	document.write("</TR>\n");
	recommend_count++;
}

}

//賃貸マンション表示
for (var i = 0; i < new_apartment_item.length ; i++){

if ( new_apartment_item[i][9] == 'on' )
{
	writebuff = "→" + new_apartment_item[i][1] + "　" + new_apartment_item[i][3] + "　" + new_apartment_item[i][4];

	document.write("<TR valign=\"top\">\n");
	if (recommend_count%2 != 1){
	document.write("<TD bgcolor=\"#FFFFFF\">[賃貸マンション]　<A href=\"" + apartmentURL + new_apartment_item[i][8] + "\" class=\"newget\">" + writebuff + "</A></TD>\n");
	}
	else
	{
	document.write("<TD bgcolor=\"#FFF1E3\">[賃貸マンション]　<A href=\"" + apartmentURL + new_apartment_item[i][8] + "\" class=\"newget\">" + writebuff + "</A></TD>\n");
	}

	document.write("</TR>\n");
	recommend_count++;
}
}

//貸駐車場
for (var i = 0; i < new_parking_item.length ; i++){

if ( new_parking_item[i][8] == 'on' )
{
	writebuff = "→" + new_parking_item[i][1];

	document.write("<TR valign=\"top\">\n");
	if (recommend_count%2 != 1){
	document.write("<TD bgcolor=\"#FFFFFF\">[駐車場]　<A href=\"" + parkingURL + new_parking_item[i][7] + "\" class=\"newget\">" + writebuff + "</A></TD>\n");
	}
	else
	{
	document.write("<TD bgcolor=\"#FFF1E3\">[駐車場]　<A href=\"" + parkingURL + new_parking_item[i][7] + "\" class=\"newget\">" + writebuff + "</A></TD>\n");
	}

	document.write("</TR>\n");
	recommend_count++;
}

}



document.write("</TABLE>\n");
document.close();

}