//ssi смотрелка с указанием размера
function ImgSSI(pic,w,h)
{
//  var X=Math.round( (screen.availWidth-w)/2 );
//  var Y=Math.round( (screen.availHeight-h)/2 );
  X=( (screen.availWidth-w)/2 );
  Y=( (screen.availHeight-h)/2 );
  var win = window.open('/i/ssiopen.shtml?'+pic,'ImgSSI','width='+w+',height='+h+',top='+Y+',left='+X);
//  win.focus();
  return false;	
}

function TvdPop(url){
X=Math.round((screen.availWidth-466)/2);
Y=Math.round((screen.availHeight-283)/2);
window.open("portfolio/tvd/"+url+".htm","tvd1","left="+X+",top="+Y+",width=466,height=285");
}

function SizeWin(url,w,h){
X=Math.round((screen.availWidth-w)/2);
Y=Math.round((screen.availHeight-h)/2);
window.open(url,"new_window","left="+X+",top="+Y+",width="+w+",height="+h);
}

function PicPop(pic,w,h,title)
{
  var X=Math.round((screen.availWidth-w)/2);
  var Y=Math.round((screen.availHeight-h)/2);

  var win=window.open("","PicPop","resizable=no,left="+X+",top="+Y+",menubar=no,status=no,scrollbars=no,width="+w+",height="+h);
  win.document.write("<html><title>"+title+"</title><body leftmargin=0 topmargin=0 marginwidth='0' marginheight='0'>");
  win.document.write("<img src='"+pic+"' width='"+w+"' height='"+h+"'>"); 
  win.document.write("</body></html>");
}




