// ########################################
// Start code for sendToFriend
// ########################################
function sendToFriend(objLink) {
	// get the url of the document being sent
	var strCurrentUrl = escape ( parent.document.URL ) ;
	// get the page <title> of the document being sent
	var strPageTitle = escape( parent.document.title );

	var strURLParams = '?pageToSend=' + strCurrentUrl + '&pageTitle=' + strPageTitle + '&mode=submitted'
	var strURL = objLink.href + strURLParams
	var strWindowProperties = 'width=570,height=460,scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no'
	
	// open the window
	openWindow(strURL ,'send_to_a_friend', strWindowProperties);
	
	// prevent any further code from executing
	return false;
}
// ########################################
// End code for sendToFriend
// ########################################


