﻿function GoToPage(hiddenName,hiddenValue,bookMark,frmnm) {
   hiddenName.value = hiddenValue;
   theForm = eval("document."+frmnm);
   alert(theForm);

   if(bookMark.length > 0)
      theForm.action = theForm.action+"#"+bookMark;
   theForm.submit();
   return true;
}