function popupFeedbackPerl( root, whence ) {
	poppedWindow = window.open( root + "openFeedback.pl?" + whence, 'HendriksPopupFeedback',
            'toolbar=no,location=no,directories=no,status=no,menubar=no,' +
            'scrollbars=no,resizable=yes,copyhistory=no,' +
            'width=512,height=512' );

	poppedWindow.focus();
}

function popupFeedback( root, whence ) {
	poppedWindow = window.open( "", 'HendriksPopupFeedback',
            'toolbar=no,location=no,directories=no,status=no,menubar=no,' +
            'scrollbars=no,resizable=yes,copyhistory=no,' +
            'width=361,height=400' );

	poppedWindow.document.write(
		"<html>\n" +
		"<head>\n" +
		"  <title>Contact me about: " + whence + "</title>\n" +
		"  <meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-1'>\n" +
		"  <meta http-equiv='Content-Style-Type' content='text/css'>\n" +
		"  <meta http-equiv='Content-Script-Type' content='text/javascript'>\n" +
		"  <meta name='Author' content='A random collection of electrons'>\n" +
		"  <meta name='Description' content=\"Feedback form for page '" + whence + "'\">\n" +
		"  <link rel='Stylesheet' type='text/css' href='" + root + "Style.css'>\n" +
		"</head>\n" +
		"<body>\n" +
		"  <div class='divider'><img src='" + root + "Decoration/Line.Purple.gif' alt='----' width='100%' height='5'></div>\n " +
		"  <h2 class='alignCC'>Say Hi!</h2>\n" +
		"  <div class='divider'><img src='" + root + "Decoration/Line.Purple.gif' alt='----' width='100%' height='5'></div>\n" +
		"  <p>\n" +
//		"  <form action='" + root + "CGI/sayHi.pl' method='post'>\n" +
//		"  <form action='http://Home.Hendrik.org.uk/CGI/sayHi.pl' method='post'>\n" +
//		"  <form action='http://cgi.Hendrik.plus.com/cgi-bin/sayHi.pl' method='post'>\n" +
		"  <form action='http://ccgi.Hendrik.plus.com/cgi-bin/sayHi.pl' method='post'>\n" +
		"    <label class='text' for='whom'>Who am I:</label>\n" +
		"  <br>\n" +
		"    <input name='whom' id='whom' type='text' size='40' maxlength='100'>\n" +
		"  <p>\n" +
		"    <label class='text' for='email'>My Email: [if you want a reply!]</label>\n" +
		"  <br>\n" +
		"    <input name='email' id='email' type='text' size='40' maxlength='100'>\n" +
		"  <p>\n" +
		"    <label class='text' for='msg'>My deep and meaningful reflections:</label>\n" +
		"  <br>\n" +
		"    <textarea name='msg' id='msg' rows='5' cols='40'></textarea>\n" +
		"  <p>\n" +
		"    <input type='hidden' name='whence' value='" + whence + "'>\n" +
		"    <div class='alignCC'><input type='submit' value='Send'></div>\n" +
		"  </form>\n" +
//		"  <div class='text textBlock'>\n" +
//		"    Sorry, my feedback form seems to be a little under the weather at the moment.&nbsp;:(\n" +
//		"    Can you please email me instead at <a href='mailto:Comments@Hendrik.org.uk'>Comments@Hendrik.org.uk</a>.\n" +
//		"    Thank you kindly.\n" +
//		"  </div>\n" +
		"</body>\n" +
		"</html>\n" );
    poppedWindow.document.close();

	poppedWindow.focus();
}
