function sendToFriend(title, URL) {
	var f;
	f = 'sendToFriend_emailer.php?url=';
	f += URL;
	title = title;
	
	text = "<div style='width:303px; margin:0 auto; background-color:#eafafe; border:#a0e7f3 1px solid; color:#2e3536;padding:10px;font-size:75%;font-family:\"Trebuchet MS\", Arial, Helvetica, sans-serif;'>";
	text += "<title>Share this page</title>";
	text += "<form name='myform' action='sendToFriend_emailer.php' method='POST'>";
	text += "<h3>Send To A Friend</h3>";
	text += "We'll automatically email that page to a friend for you.<br /><br />";
	text += "Friend's Email Address <span style='color:#F00;'>required</span><br><input type=text  name = 'to' size='25'><br>";
	text += "Personal Message<br><textarea type=text  name = 'msg' rows='4' cols='35'></textarea><br>";
	text += "<br><INPUT TYPE='SUBMIT' VALUE='Send Message' STYLE= ''font-size:medium;color:#FFF; background-color: #307dc4;font-family:\"Trebuchet MS\", Arial, Helvetica, sans-serif;'>";
	text += "<input type='hidden' value='" + title + "' name='title'/>";
	text += "<INPUT TYPE='RESET' VALUE='Reset' STYLE= ''margin-left:5px;font-size:small;color:#FFF;background-color:#307dc4;font-family:\"Trebuchet MS\", Arial, Helvetica, sans-serif;'><br /><br />";
	text += "<input type='hidden' value='" + URL + "' name='cili'/><a href='javascript:window.close()'>Close This Window</a></div></form>";
	
	newWindow = window.open('','newWin','width=346,height=365');
	newWindow.document.write(text);
	
	// to = friends email address
	// msg = personal message
	// cili = document
	// GET RID OF BELOW:
	// my = your email address
	// zname = friends name
	// name = your name
}