	function curDateR(){
		week=['Воскресенье','Понедельник','Вторник','Среда','Четверг','Пятница','Суббота'];
		month=['января','февраля','марта','апреля','мая','июня','июля','августа','сентября','октября','ноября','декабря'];
		time=new Date();
		day=time.getDay();
		mn=time.getMonth()
		document.write(week[day]+'  '+time.getDate()+' '+month[mn])

};
function today (){
time=new Date();
document.write(time.toString().substring(0,time.toString().indexOf(":")-3)+" ");

}

function send(form){
var a = 'mailto:shot@shot-works.com?subject='+form.leng.value+'&\
body=Company - '+form.company.value+';  Adress - '+form.adress.value+';  Phone/Fax - '+form.phone_fax.value+';  E-mail - '+form.e_mail.value+';  Person - '+form.person.value+';  Comment - '+form.comment.value;
document.order.action=a;
}

