<!-- Begin



// NOTE: These are the view cart buttons and sidebar area under the menu





var paypal		= "no"			// SHOW THE PAYPAL VIEW CART BUTTON

var paypal_email	="your@email.com"	// ADD YOUR PAYPAL E-MAIL FOR THE VIEW CART



var TWOCO		= "no"			// SHOW THE 2CO VIEW CART BUTTON

var TWOCO_sellerID	= "999999"		// YOUR 2CO SELLER ID



var showimage		= "no"			// SHOW A LINKED SIDEBAR IMAGE

var imagelink		= "index.html"		// PAGE TO LINK IMAGE TO



var showline		= "no"			// SHOW LINE AFTER THE VIEW CART





var showapps		="no"         //SHOW APPLICATION LINKS






// YOU DO NOT NEED TO EDIT BELOW THIS LINE



// COPYRIGHT 2006 © Allwebco Design Corporation

// Unauthorized use or sale of this script is strictly prohibited by law





if (showapps == "yes") {

document.write('<div style="position:absolute; left:300px; top:40px; width:100%;">');
document.write('<table width=450 border=0><tr>');
document.write('<td align=center><A class="apply_link" HREF="index.html?page=60">Apply Now</A></td>');
document.write('<td align=center><A class="apply_link" HREF="index.html?page=61">Request a Quote</A></td>');
document.write('<td align=center><A class="apply_link" HREF="">Print Application</A></td>');
document.write('</tr></table>');
document.write('</div>');


}

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="156"><tr><td align="center">');





// PAYPAL VIEW CART FORM

if (paypal == "yes") {

document.write('<br><a href="https://www.paypal.com/cart/business='+paypal_email+'&display=1" target="paypal"><img src="picts/cartview-Paypal-off.gif" border="0" onmouseover="this.src=\'picts/cartview-Paypal-on.gif\'" onmouseout="this.src=\'picts/cartview-Paypal-off.gif\'"></a><br>');

}







// 2CO VIEW CART FORM

if (TWOCO == "yes") {

document.write('<br><a href="https://www.2checkout.com/2co/buyer/purchase?sid='+TWOCO_sellerID+'" target="TWOCO"><img src="picts/cartview-2CO-off.gif" border="0" onmouseover="this.src=\'picts/cartview-2CO-on.gif\'" onmouseout="this.src=\'picts/cartview-2CO-off.gif\'"></a><br>');

}







// MENU LINE

   if (showline == "yes") {

document.write('<br><img src="picts/menu-line.gif" width="156" height="2" vspace="4"><br>');

}







// SMALL PICTURE AREA

   if (showimage == "yes") {

document.write('<br><center><a href="'+imagelink+'"><img src="picts/sidebar.jpg" border="0" class="borders"></a><br><br></center>');

}





document.write('</td></tr></table>');





//  End -->