// Used to popluate View Cart link on NavBar
function insertViewCart() {
	document.write('<div align="center">');
	document.write('<form name="viewCartForm" target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">');
	document.write('<input type="hidden" name="cmd" value="_cart">');
	document.write('<input type="hidden" name="business" value="postmaster@jewelrybykaia.com">');
	document.write('<input type="hidden" name="display" value="1">');
	document.write('<input type="hidden" name="shopping_url" value="http://www.jewelrybykaia.com/Jewelry.htm">');
//	document.write('<input type="image" src="https://www.paypal.com/images/view_cart_02.gif" border="0" name="submit">');
	document.write('<a href="#" class="Links" onClick="document.viewCartForm.submit()">View Cart</a>');
	document.write('</form>');
	document.write('</div>');
}