function writeSalv(responseType,divSuffix){
  responseType = typeof responseType != 'undefined' ? responseType : 'salvation';
  divSuffix = (typeof divSuffix == 'undefined') ? '' : divSuffix;
  var targetDiv = 'net211response' + divSuffix;
  var hn = window.location.hostname;
  var h = hn.lastIndexOf(".",6);
  hn = hn.substr(h+1);
  var iFrame = '<iframe scrolling="auto" height="380" frameborder="0" align="middle" width="690" marginheight="0" marginwidth="0"' ;
       iFrame += ' src="http://media.prayedtheprayer.com/iframes/' + responseType + '.html?nPartner=' + hn + '"></iframe>';
  var ele = document.getElementById(targetDiv);
  if (ele == null)
     {alert('Sorry the response form is not working properly. Please contact site administrator');
	  quit;}
  ele.innerHTML = iFrame;
  ele.style.display = 'block';	 }
  // JavaScript Document
