


makeFormAndPost = function (psUrl, psVarName, psVarValue) {
  f = document.createElement('form'); 
  f.method = 'post';                         
  f.action = psUrl;                            
  f.style['display']='none';

  i0 = document.createElement('input');
  i0.type  = 'text';        
  i0.name  = psVarName; 
  i0.value = psVarValue;
  i0.style['display']='none';
  
  f.appendChild(i0);                                      

  document.body.appendChild(f);                                       
  f.submit();

}

makeFormAndPost2 = function (psUrl, psVarName1, psVarValue1, psVarName2, psVarValue2) {
  f = document.createElement('form'); 
  f.method = 'post';                         
  f.action = psUrl;                            
  f.style['display']='none';

  i0 = document.createElement('input');
  i0.type  = 'text';        
  i0.name  = psVarName1; 
  i0.value = psVarValue1;
  i0.style['display']='none';
  f.appendChild(i0);                                      

  i1 = document.createElement('input');
  i1.type  = 'text';        
  i1.name  = psVarName2; 
  i1.value = psVarValue2;
  i1.style['display']='none';
  f.appendChild(i1);                                      
  
  document.body.appendChild(f);                                       
  f.submit();

}

makePopupAndPost = function (psUrl, psVarName, psVarValue) {
  f = document.createElement('form'); 
  f.method = 'post';                         
  f.action = psUrl;                            
  f.style['display']='none';
  f.target = "_blank";
  
  i0 = document.createElement('input');
  i0.type  = 'text';        
  i0.name  = psVarName; 
  i0.value = psVarValue;
  i0.style['display']='none';
  
  f.appendChild(i0);                                      

  document.body.appendChild(f);                                       
  f.submit();
}

makePopupAndPrint = function (psUrl, psVarName, psVarValue) {
  f = document.createElement('form'); 
  f.method = 'post';                         
  f.action = psUrl;                            
  f.style['display']='none';
  f.target = "_blank";
  
  i0 = document.createElement('input');
  i0.type  = 'text';        
  i0.name  = psVarName; 
  i0.value = psVarValue;
  i0.style['display']='none';
  
  f.appendChild(i0);                                      

  document.body.appendChild(f);                                       
  f.submit();
}