<!-- 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 	= "yes"				// 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		= "no"					// TURN MAILING LIST FORM ON
var join_domain		= "your-domain.com"			// YOU MUST ENTER YOUR DOMAIN NAME
var join_email		= "subscribe@your-domain.com"		// 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(' '+join_text+'<br>');
document.write('<form method="POST" action="http://'+join_domain+'/cgi-bin/formmail.cgi" style="margin: 0px" target="_blank">');
document.write('<input type="hidden" name="recipient" value="'+join_email+'">');
document.write('<input type="hidden" name="redirect" value="http://'+join_domain+'/'+join_thanks+'">');
document.write('<input type="hidden" name="required" value="email">');
document.write('<input type="hidden" name="sort" value="email">');
document.write('<input type="text" NAME="email" size="17" class="shadeform" onKeyDown="if(event.keyCode==13) event.keyCode=9;"  value="your@e-mail.com" onFocus="clearText(this)"><br>');
document.write('<input type="submit" value="'+join_button+'" style="width : 150px; margin: 3px" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button" onClick="goForit(this.form)">');
document.write('</form>');

}

//  End -->