function view_full(title,img)
{
   var WinHeight=500;
 var WinWidth=600;
img = 'lib/images/big/'+img; var c = '<html><head><title>'+title+'</title></head><body LEFTMARGIN="0" TOPMARGIN="0" marginheight="0" marginwidth="0" onLoad="javascript:var wW = '+WinWidth+';if ((document.big.width + 40)<wW) wW=document.big.width + 40;var wH = '+WinHeight+';if ((document.big.height + 40)<wH) wH=document.big.height + 40; window.resizeTo(wW,wH);"><a href="javascript:window.close();"><img name="big" src="'+img+'" border="0"></a></body></html>';
 var w = window.open('','full_img','height='+ WinHeight+',width='+WinWidth+',top=100,left=100,toolbar=0,location=0,menubar=0,status=0,scrollbars=1,resizable=1');
  w.document.open(); w.document.write(c); w.document.close();
if(w.focus){w.focus();}
}