function EmailToFriend() {
		subject = "?subject=Webvroom.com - A great site to visit";
		body = "&body=I came across Webvroom.com and I want to share this great site with you! Visit http://www.webvroom.com !";
		emailAddr = prompt("Please provide the email addresses of your friends to send page to.","");
		if ((emailAddr != null) && (emailAddr != "")) {
			window.location = "mailto:" + emailAddr + subject + body;
		}
}

function Bookmark() {
	if (window.external) {
   		window.external.AddFavorite(location.href, document.title);
  	} else {
		alert("Sorry, your browser does not support this function.");
  	}
}

function MakeHomePage(a) {
	if (document.all) {
		a.style.behavior="url(#default#homepage)";
		a.setHomePage("http://www.webvroom.com");
	} else {
		alert("Sorry, your browser does not support this function.");
	}
}

function Print() {
	if (window.print) {
		setTimeout('window.print();',200);
	} else {
		alert("Please press 'Ctrl+P'(for Windows) or 'Command+P'(for Mac) to print page.");
	}
}
