// JavaScript Document
function goSilver()
{
 // Replace page1.php, page2.php and page3.php with the names of the web pages you want to goto.
 // Note: You may have to specify the full path to the web pages you want to goto (ie: "http://some_Website.com")
 
 document.theForm.action="silver_package.html";
 document.submit();
 }

// JavaScript Document
function goGold()
{
 // Replace page1.php, page2.php and page3.php with the names of the web pages you want to goto.
 // Note: You may have to specify the full path to the web pages you want to goto (ie: "http://some_Website.com")
 
 document.theForm.action="gold_package.html";
  document.submit();
 }

// JavaScript Document
function goPlatinium()
{
 // Replace page1.php, page2.php and page3.php with the names of the web pages you want to goto.
 // Note: You may have to specify the full path to the web pages you want to goto (ie: "http://some_Website.com")
 
 document.theForm.action="platinium_package.html";
  document.submit();
 }
