	// Tell A Friend v0.1
	// Andrew Buchan
	// www.andrewbuchan.co.uk
	// Release November 2007



function taf() {

	newwindow=window.open('','taf','height=500,width=500');
	var tmp = newwindow.document;

	tmp.write('<html>\n\n');

	tmp.write('<head>\n\n');

	tmp.write('<title>Tell A Friend</title>\n\n');

	tmp.write('</head>\n\n');

	tmp.write('<body>\n\n');

	tmp.write('<div align=\"center\">');
	
	tmp.write('<h1>Tell A Friend</h1>\n\n');

	tmp.write('<form name="taf" action="tellafriend/taf.php" method="post">\n\n');

	tmp.write('<p>Your Name: <input type="text" name="your_name" /></p>\n\n');

	tmp.write('<p>Friends Email: <input type="text" name="friends_email" /></p>\n\n');

	tmp.write('<p>Subject: <input type="text" name="subject" value="Check this out!" /></p>\n\n');

	tmp.write('<p>Message: <textarea name="message" rows="6" cols="50">Hey, look at this cool product.\n\n' + self.location.href + '</textarea></p>\n\n');

	tmp.write('<input type="submit" name="submit" value="Tell A Friend" />\n\n');

	tmp.write('</form>\n\n');
	
	tmp.write('</div>');

	tmp.write('</body></html>\n\n');

	tmp.close();

}
