function OpenPhoto( HRef, width, height ) {

 window.open(HRef,'_blank','statusbar=0,toolbar=0,location=0,scrollbars=1,resizable=1,width='+width+',height='+height);

}

/*function ShowSorry( text = 'Извините, но пока этот раздел не доступен...' ) {*/
function ShowSorry( text ) {

 if( !text )
  text = 'Извините, но пока этот раздел не доступен...';

 window.alert(text);
 return false;

}

function GetCheckedValue( Radio ) {

 for( i = 0; i < Radio.length; i++ ) {
  if( Radio[i].checked )
   return Radio[i].value; 
 }

 return 0;
}
