<!-- Begin JOINING OPTIONS CODE

// ONLY USE lowercase FOR yes no OPTIONS - TURN OFF NOTEPAD WORD WRAP TO VIEW

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON



// START PAYPAL OPTION - YOU MUST EDIT THESE OPTIONS TO USE PAYPAL

var paypal_join 	= "no"				// TURN PAYPAL PAYMENT OPTION ON
var paypal_price	= "25.00"			// PRICE TO JOIN THROUGH PAYPAL
var paypal_term		= "Unlimited Access"		// LENGTH OF THE PAYPAL MEMBERSHIP
var paypal_email	= "yourpaypal@email.com"	// ENTER YOUR PAYPAL E-MAIL
var paypal_domain	= "your-domain.com"		// YOU MUST ENTER YOUR DOMAIN NAME
var paypal_currency	= "USD"				// PAYPAL CURRENCY USD = US DOLLARS
var paypal_currencys	= "$"				// CURRENCY SYMBOL
var paypal_name		= "Website Subscribe"		// PAYPAL NAME OF THE SUBSCRIPTION
var paypal_image	= "yes"				// SHOW THE PAYPAL IMAGE
var paypal_thanks	= "thanks-signup.htm"		// THANK YOU PAGE




// START JOIN MAILING LIST OPTION TURN OFF PAYPAL OPTION (enter no above) TO USE THIS

var join_list		= "yes"					// TURN MAILING LIST FORM ON
var join_domain		= "www.thestrangers.org"			// YOU MUST ENTER YOUR DOMAIN NAME
var join_email		= "info@thestrangers.org"	// MAILIG LIST E-MAIL
var join_button		= "Click to Sign Up"			// MAILING LIST BUTTON TEXT
var join_text		= "Please join our mailing list:" 	// TEXT OVER THE JOIN FORM
var join_thanks		= "thanks-signup.htm"			// THANK YOU PAGE





// COPYRIGHT 2004 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

// START PAYPAL ORDERING

   if (paypal_join == "yes") {

document.write('<span class="price">'+paypal_term+' '+paypal_currencys+paypal_price+'</span><br><br>');
document.write('<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank" style="margin: 0px">');
document.write('<input type="hidden" name="cmd" value="_xclick">');
document.write('<input type="hidden" name="business" value="'+paypal_email+'">');
document.write('<input type="hidden" name="quantity" value="1">');
document.write('<input type="hidden" name="item_name" value="'+paypal_name+'">');
document.write('<input type="hidden" name="amount" value="'+paypal_price+'">');
document.write('<input type="hidden" name="currency_code" value="'+paypal_currency+'">');
document.write('<input type="hidden" name="return" value="http://'+paypal_domain+'/'+paypal_thanks+'">');
document.write('<input type="submit" value="Click to Join" style="width : 125px" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button">');
document.write('</form>');
document.write('<br>');
   if (paypal_image == "yes") {
document.write('<img src="picts/paypal.gif"><br>');
}
}



// START MAILING LIST

   if (join_list == "yes") {

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
} 


document.write('<form method="POST" action="http://www.thestrangers.org/cgi-bin/mmf/sub.pl">
document.write('<p>Email address: <input type="text" name="email" size="20"><br>
document.write('First name: <input type="text" name="fname" size="20"><br>
document.write('Last name: <input type="text" name="lname" size="20"><br>
document.write('How did you hear about us: <input type="text" name="misc1" size="20"></p>
document.write('<input type="hidden" name="task" value="subscribe">
document.write('<input type="hidden" name="list" value="strangersmaillist">
document.write('<input type="hidden" name="language" value="eng">
document.write('<p><input type="submit" value="Add Address"></p>
document.write('</form> 
');

}

//  End -->