// 
// Project  Name: None
// File / Folder: js/popup.js
// File Language: javascript
// Copyright (C): 2005 Richard Group, Inc.
// First  Author: Liam Bryan
// First Created: 2005.10.07 09:27:59
// Last Modifier: Liam Bryan
// Last Modified: 2005.10.07 10:17:18

function emailToAFriend(uri) {
	var frame = document.createElement('iframe');
	frame.setAttribute('id', 'emailToAFriend');
	frame.setAttribute('src', '?action=etfform&url=' + uri);
	frame.setAttribute('scrolling', 'no');
	document.getElementsByTagName('body')[0].appendChild(frame);
}

