var lastbh=1;
//preload images
function choose(id, type, name, width, height){
 document.getElementById(type+id).checked=true;
 putCode(id, type, name, width, height);
 return false;
}
function putCode(id, type, name, width, height){
 codeBlock=document.getElementById(type+'Code');
 if(type == 'button' || type == 'sbutton'){
  title = 'Поддержи объединение!';
  alt= 'Объединение Санкт-Петербурга и Ленинградской области';
 }
 if(type == 'userbars'){
  title = 'Proud to live in Ingermanland';
  alt= 'Proud to live in Ingermanland';
 }
 output='';
 output+='<!-- ingria.org -->';
 output+='<a href="http://ingria.org" target="_blank"><img src="http://ingria.org/'+type+'/'+name+'" border="0" width="'+width+'" height="'+height+'"  title="'+title+'" alt="'+alt+'" /></a>';
 output+='<!-- ingria.org -->';
 codeBlock.value=output;

 lastbh=num;

 return false;
}
