function isPPC() {if (navigator.appVersion.indexOf("PPC") != -1) return true;else return false;}

// SET MESSAGE VALUES

if (document.getElementById){
// These three seem to need values for Netscape 6
var to  = "my_friend@somewhere.com"; 
var cc  = "another_friend@somewhere_else.com"; 
var bcc = "yet_another_friend@god_knows.com"; 
}
else {
// These three remarked set to blank
var to  = "" ; 
var cc  = "" ; 
var bcc = "" ; 
}

var subject = "African Dance Music"; 
var body = "Hi\n\nThought you\'d like to know about this website\n" +
           "on live African Dance Music in Sussex:\n" +
		   "www.AfricanNightFever.co.uk\n\n" +
//            window.location + "\n\n" +
		   "Regards\n"

// BUILD MAIL MESSAGE COMPONENTS 
var doc = "mailto:" + to + 
        "?cc=" + cc + 
        "&bcc=" + bcc + 
        "&subject=" + escape(subject) + 
        "&body=" + escape(body); 

if(isPPC()) {
document.write('<A CLASS="contact" HREF=\"&cc=another_person@company.com&subject\=I thought you might be interested in this website, ' + document.title + '?body=The address is : ' + window.location + '\" onMouseOver="window.status=\'Email a friend about this page\'; return true" TITLE="Email a friend about this page"><\/A><br>');
}

else { // Internet Explorer and Netscape 4 and Netscape 6
document.write('<A CLASS="contact" HREF=' + doc + ' onMouseOver="window.status=\'Tell a friend about ANF\'; return true" onMouseOut="window.status=\'\';return true" title="Email this page to a friend">Tell a friend<\/A><br>');}