function gettip(txt){document.getElementById('tip').innerHTML=txt}
function reset(){document.getElementById('tip').innerHTML=""}
function validator(theForm) {
   if (theForm.your_name.value == "") { alert('Пожалуйста, укажите Ваше имя!');theForm.your_name.focus();return false; }
   if (theForm.your_mail.value == "") { alert('Пожалуйста, укажите Ваш e-mail!');theForm.your_mail.focus();return false; }
   return true;
}
function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } }
function doDefault(theText) { if (theText.value == "") { theText.value = theText.defaultValue } }


// плеер 
oneBit = new OneBit('js/1bit.swf');
oneBit.ready(function() {
// Using specify you can set 'color', 'background', 'playerSize', 'position' and 'analytics' - all are optional
oneBit.specify('color', '#CC0000');
// Apply is called after options are specified and includes the CSS selector
oneBit.apply('a');
});

