//Function to set the image URL of thumbnails & main image
function getForm(subForm)
{

   var noOfTypes = subForm.subscrType.length - 1; 
   for (i=0; i<=noOfTypes; i++)
   {
     if (subForm.subscrType[i].checked)
     {
      formID = subForm.subscrType[i].value;
     }
   }

   if (formID == "1") 
   {
      alert("adult.aspx");
      window.location = "adult.aspx";
   } 

   if (formID == "2") 
   {
      alert("collegeStudent.aspx");
      window.location = "collegeStudent.aspx";
   }

   if (formID == "3") 
   {
      alert("over13Student.aspx");
      window.location = "over13Student.aspx";
   }

   if (formID == "4") 
   {
     alert("under13Student.aspx");
     window.location = "under13Student.aspx";
   }


}