 //-------------------------------
 // Function: submit_confirm()
 // Desc: OnClick Delete Confirm
 //-------------------------------

 function submit_confirm(txt,url)
 {
     var txt;
     var url;
     var confirmSub = confirm(txt);
     if (confirmSub)
     {
          window.location = url;
     }
     else
     {
          return false;
     }
 }

 //-------------------------------
 // Function: popWindow()
 // Desc: Generic Pop Up Window
 //-------------------------------

 function popWindow(URL,LEFT,TOP,WIDTH,HEIGHT,SCROLLBARS,RESIZE)
 {
  day = new Date();
  id = day.getTime();
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=" + SCROLLBARS + ",location=0,statusbar=0,menubar=0,left=" + LEFT + ",top=" + TOP + ",screenX=0,screenY=0,resizable=" + RESIZE + ",width=" + WIDTH + ",height=" + HEIGHT + "');");
 }