
placePhoto=function(node){if(!node.height||!node.width){placePhoto.photosToPlaceOnload.push(node);}else{node.style.left=Math.floor(((node.width>=placePhoto.maxSize)?placePhoto.padding:(placePhoto.maxSize-node.width)/2+placePhoto.padding))+'px';node.style.top=Math.floor(((node.height>=placePhoto.maxSize)?placePhoto.padding:(placePhoto.maxSize-node.height)/2+placePhoto.padding))+'px';}
node.style.visibility='visible';};placePhoto.padding=5;placePhoto.maxSize=160;placePhoto.photosToPlaceOnload=[];window.addLoadEvent(function(){if(placePhoto.photosToPlaceOnload.length){var errorsToReport=false;for(var i=0,j=placePhoto.photosToPlaceOnload.length;i<j;i++){if(!placePhoto.photosToPlaceOnload[i].height||!placePhoto.photosToPlaceOnload[i].width){errorsToReport=true;continue;}
placePhoto(placePhoto.photosToPlaceOnload[i]);};if(errorsToReport){try{czen.logError('placePhoto');}catch(err){};}}});