﻿//forming e-mail from char codes
function callExtMailer(){
	var emailarray = new Array(114,101,110,116,97,107,114,97,110,64,114,101,110,116,97,107,114,97,110,46,99,111,109,46,117,97)
	var postemail = ''
	for (i=0;i<emailarray.length;i++)
	postemail+=String.fromCharCode(emailarray[i])
	document.location.href = 'mailto:'+postemail+'?subject=ARENDAKRANOV.COM.UA'
	}