/**
 * This function creates e-mail address from 2 parts and
 * tires to open default e-mail application window
 */
function sendMail(str1, str2){
	var address = str1 + '@' + str2;
	var url = 'mailto:' + address;
	window.location = url;
}
