dom = (document.getElementById)? true : false;

function showPhoto(foto,alt) {
 if (dom)
{
 document.getElementById('foto').style.display = "block";
 document.getElementById('foto').src= "images/"+foto;
 document.getElementById('foto').alt= alt;
}
else
{
document.all['foto'].style.display = "block";
document.all['foto'].src= "images/"+foto;
document.all['foto'].alt= alt;
}
}

	var mylastwidth;

function set_document_width_parameters(width)
{var v1,v2,p1,p2;
  if(width<800)
  {v1=270;v2=2;p1="s_mask_small.jpg";p2="s_napisanie.gif";
  }
  else
  {v1=310;v2=15;p1="mask_small.jpg";p2="napisanie.gif";
  }

 if (dom)
{
 document.getElementById('tdw1').width = v1;
 document.getElementById('tdw2').width = v2;
 document.getElementById('imgw1').src= "images/design/"+p1;
 document.getElementById('imgw2').src= "images/design/"+p2;
}
else
{
document.all['tdw1'].width = v1;
document.all['tdw2'].width = v2;
document.all['imgw1'].src= "images/design/"+p1;
document.all['imgw2'].src= "images/design/"+p2;

}
}
	
function myInit()
{mylastwidth=document.body.clientWidth;
set_document_width_parameters(mylastwidth);
window.onresize=MyTest;
}

function MyTest()
{var w=document.body.clientWidth; 
  set_document_width_parameters(w);
  mylastwidth=w;	
} 

