function shadow_more(num){ if(document.getElementById('shadow_more_'+num).style.display=="none"){  document.getElementById('shadow_more_'+num).style.display = "";
  document.getElementById('text_'+num).innerHTML = '<a href="javascript:shadow_more('+num+');" class="light_link">Скрыть изображения</a>'; }
 else{  document.getElementById('shadow_more_'+num).style.display = "none";
  document.getElementById('text_'+num).innerHTML = '<a href="javascript:shadow_more('+num+');" class="light_link">Показать все изображения</a>'; }
}

function please_show_me(name,width,height){
 var insert = "<html>" +
 "<head>" +
 "<title>Изображение</title>" +
 "</head>" +
 "<body topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0'>" +
 "<img src='/libs/portfolio/"+name+"' width='"+width+"' height='"+height+"' border='0' onclick='window.close();'>" +
 "</body>" +
 "</html>"; var shadow_window = window.open("","shadow_window","dependent=1,width="+width+",height="+height+",status=yes,left=200,top=150");
 shadow_window.document.open();
 shadow_window.document.write(insert);
 shadow_window.document.close();}

function black_text(name,w,h,sw,sh){

 document.getElementById('black_text').innerHTML = '<div align="center"><a href="javascript:please_show_me(\''+name+'\',\''+sw+'\',\''+sh+'\');"><img src="/libs/portfolio/'+name+'" width="'+w+'" height="'+h+'" border="0" style="padding-top: 8px;"></a></div>';}
