﻿// send this page to a friend
function sendToFriend(){
	//var target = window.event ? window.event.srcElement : e ? e.target : null;
	var url = window.location.href;
	var subject = 'Check out this new floor site';
	var body = 'I found this great flooring site. The prices are really good and they deliver. Check it out if you get a chance. \n' + url;
	
	//target.href = "mailto:?subject=" + escape(subject) + '&amp;body=' + escape(body);
	return "mailto:?subject=" + escape(subject) + '&body=' + escape(body);	
}
function init_sendtofriend(){
	var elSendToFriend = document.getElementById('lnksendtofriend');
	if(elSendToFriend != null){
		// set href of link
		elSendToFriend.setAttribute('href', sendToFriend());
	}
}
// add event handler to sendtoafriend link
addEvent(window, 'load', init_sendtofriend);