<!--
//=================================================================================================
//=================================================================================================
//                                                                                               ==
//                    jjjjjjjjjj     aaaaaaaaaa     vv      vv     aaaaaaaaaa                    ==
//                    jjjjjjjjjj     aaaaaaaaaa     vv      vv     aaaaaaaaaa                    ==
//                        jj         aa      aa     vv      vv     aa      aa                    ==
//                        jj         aa      aa     vv      vv     aa      aa                    ==
//                        jj         aaaaaaaaaa      vv    vv      aaaaaaaaaa                    ==
//                        jj         aaaaaaaaaa      vv    vv      aaaaaaaaaa                    ==
//                    jj  jj         aa      aa       vv  vv       aa      aa                    ==
//                    jj  jj         aa      aa       vv  vv       aa      aa                    ==
//                    jjjjjj         aa      aa        vvvv        aa      aa                    ==
//                    jjjjjj         aa      aa         vv         aa      aa                    ==
//                                                                                               ==
//                                                                                               ==
//                                                                                               ==
//     ssssssssss     cccccccccc     rrrrrrrrrr     iiiiiiiiii     pppppppppp     tttttttttt     ==
//     ssssssssss     cccccccccc     rrrrrrrrrr     iiiiiiiiii     pppppppppp     tttttttttt     ==
//     ss             cc             rr      rr         ii         pp      pp         tt         ==
//     ss             cc             rr      rr         ii         pp      pp         tt         ==
//     ssssssssss     cc             rrrrrrrrrr         ii         pppppppppp         tt         ==
//     ssssssssss     cc             rrrrrrrrrr         ii         pppppppppp         tt         ==
//             ss     cc             rr   rr            ii         pp                 tt         ==
//             ss     cc             rr    rr           ii         pp                 tt         ==
//     ssssssssss     cccccccccc     rr     rr      iiiiiiiiii     pp                 tt         ==
//     ssssssssss     cccccccccc     rr      rr     iiiiiiiiii     pp                 tt         ==
//                                                                                               ==
//=================================================================================================
//=================================================================================================
//     target:  http://encorevideoservices.com                                                   ==
//     author:  brite ventures                                                                   ==
//     hello :  thanks for looking!                                                              ==
//=================================================================================================
//=================================================================================================

//--------------------------------
// create and submit paypal form
//--------------------------------

function goPayPal() {

	var pform = document.getElementById('pform');

	var phtml = '';

	phtml = phtml + '<form name="evs01" id="evs01" action="https://www.paypal.com/cgi-bin/webscr" method="post">';
	phtml = phtml + '<input type="hidden" name="cmd" value="_s-xclick">';
	phtml = phtml + '<input type="hidden" name="hosted_button_id" value="5482143">';
	phtml = phtml + '<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">';
	phtml = phtml + '<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">';
	phtml = phtml + '</form>';

	pform.innerHTML = phtml;

	document.evs01.submit();
}

