var objectsPropertiesNames = new Array ("Объект","Код объекта","Сфера деятельности","Дата поступления","Стоимость","Местонахождение","Проверка УБК","Описание","Ключевые слова");

function showDetails (thisRecord) {
var devide = thisRecord.split("|");
title = devide[0];
objCode = devide[1];
newWindow=window.open('','details', 'copyHistory=no, directories=no, height=390, width=520, left=140, top=110, location=no, menubar=no, resizable=yes, scrollbars=yes, status=no, toolbar=no');
newWindow.document.open();
newWindow.document.write('<html><head><META content=\'text/html; charset=windows-1251\' http-equiv=Content-Type><title>УБК: объекты на продажу</title><style>* {font-family: Verdana, Tahoma, Arial, Sans-serif;font-size:12;} a {color: #003399;} a:hover {text-decoration: none;color: #ff6600;} .title {font-weight:bold; color:#ff3300;}</style></head><body bgColor=fffff0>' + '<center><hr size=2 color=#9EB0D5><IFRAME height=\"64\" width=\"472\" marginwidth=0 marginheight=0 scrolling=no src=\"http://www.biz-consalt.com/imgs/bizbanner2.htm\"></IFRAME><hr size=2 color=#9EB0D5>'+'<div class=title>' + title + '</div><hr size=2 color=#9EB0D5><table border=1 bordercolor=#9EB0D5 cellspacing=0 cellpadding=4 width=100%>');
for (i=1; i< (objectsPropertiesNames.length - 1); i++) {
newWindow.document.write ('<tr valign=top><td style=\"background:#d0d9e9;font-size:11;color:#003333;\" width=128>' + objectsPropertiesNames[i] + '<td style=\"background:#efefef;font-size:12;color:#000000f;\">' + devide[i] + '</tr>');
}
newWindow.document.write ('</table>');
var moreInfo = escape("Send_me_more_info_about_object_[" + objCode + "]");
var pathToPhoto="../db/";
if (document.location.href.indexOf("index.html") !=-1){var pathToPhoto="db/";}
newWindow.document.write ('<hr size=2 color=#9EB0D5><p align=center><a href=\"' + pathToPhoto + objCode + '/index.htm\" target=_blank>фотографии объекта ' + objCode + '</a><p align=center>Запросить дополнительную информацию:<p align=center><a href=\"mailto:info@biz-consalt.com?subject=' + moreInfo + '\">info@biz-consalt.com</a> | тел.: (044) 496-07-10</p>');
newWindow.document.write ('<hr size=2 color=#9EB0D5>'+
'<center><IFRAME height=\"64\" width=\"472\" marginwidth=0 marginheight=0 scrolling=no src=\"http://www.biz-consalt.com/imgs/banner.htm\"></IFRAME>'+
'</center>');
newWindow.document.write ('<hr size=2 color=#9EB0D5></body></html>');
newWindow.document.close();
newWindow.focus();
}

