<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://danube.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Danube - Contact Customer Support - Comments</title>
 <link>http://danube.com/scrumworks/pro/support/submit</link>
 <description>Comments for &quot;Contact Customer Support&quot;</description>
 <language>en</language>
<item>
 <title>Contact Customer Support</title>
 <link>http://danube.com/scrumworks/pro/support/submit</link>
 <description>&lt;script type=&quot;text/javascript&quot; src=&quot;/danube_includes/sarissa.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;/danube_includes/util-functions.js&quot;&gt;&lt;/script&gt;
  
&lt;script type=&quot;text/javascript&quot;&gt;
&lt;!--  
  addEvent(window, &#039;load&#039;, init, false);

  function init() {
      if (!Sarissa || !document.getElementById) return;
      
      var formElements = document.getElementsByTagName(&#039;form&#039;);
      for (var i = 0; i &lt; formElements.length; i++) {
          if (formElements[i].className.match(/\bajaxify\b/)) {
              addEvent(formElements[i], &#039;submit&#039;, submitTheform, false);
          }
      }
  }
  
  function submitTheform(e) {
      /* Cancel the submit event, and find out which form was submitted */
      knackerEvent(e);
      var target = window.event ? window.event.srcElement : e ? e.target : null;
      if (!target) return;
      
      /* Check if this form is already in the process of being submitted. 
       * If so, don&#039;t allow it to be submitted again. */
      if (target.ajaxInProgress) return;
	  
	  
	  /** Form Submission Checks **/
		
		var theForm = document.getElementById( &#039;ajaxify&#039; );
		var inputFields = theForm.elements;
		var formCheck = 1;
		var originalStyles = new Array(inputFields.length);
		var errorStyle = &quot;-error&quot;;
	
		for (var i = 0; i &lt; inputFields.length; i++) 
		{
			// Check for non required fields, unelegant but it works
			if( (inputFields[i].name != &quot;build&quot;) &amp;&amp; (inputFields[i].name != &quot;description&quot; ) &amp;&amp; (inputFields[i].name != &quot;referrer&quot; ) )
			{
				if( (inputFields[i].value.length == 0) || (inputFields[i].value == null) )
				{
					if( inputFields[i].className.substr((inputFields[i].className.length-errorStyle.length)) != errorStyle )
						inputFields[i].className = inputFields[i].className+errorStyle;
					formCheck = 0;
				}
				
				// Clear last errors that were corrected
				else if( inputFields[i].className.substr((inputFields[i].className.length-errorStyle.length)) == errorStyle )
					inputFields[i].className = inputFields[i].className.substring( 0, (inputFields[i].className.length-errorStyle.length) );
			}
		}
		
		if( !formCheck )
		{
			alert( &quot;Please fill in the required fields before submitting your request.&quot; );
			return false;
		}
		
		/** END Form Submission Checks **/
	  
      
      /* Set up the request */
      var xmlhttp =  new XMLHttpRequest();
      xmlhttp.open(&#039;POST&#039;, &#039;/danube_includes/support_swp_post.php&#039;, true);
      
      /* The callback function */
      xmlhttp.onreadystatechange = function() {
          if (xmlhttp.readyState == 4) {
              if (xmlhttp.status == 200)
                  addFeedback(xmlhttp.responseXML, target);
              else
                  target.submit();
          }
      }
	  
	  document.getElementById( &#039;message-man&#039;).style.display = &quot;block&quot;;
      
      /* Send the POST request */
      var form = document.getElementById(&#039;ajaxify&#039;);
      var elements = form.elements;
      query = &quot;&quot;;
      for ( i = 0; i &lt; elements.length-1; i++ )
      {
        query = query + elements.item(i).name + &quot;=&quot; + elements.item(i).value + &quot;&amp;&quot;;
      }
      xmlhttp.setRequestHeader(&#039;Content-Type&#039;, &#039;application/x-www-form-urlencoded&#039;);
      xmlhttp.send(query);
      
      /* Add temporary feedback that the request has been sent */   
      var loadingImg = document.createElement(&#039;img&#039;);
      loadingImg.src = &#039;/img/working.gif&#039;;
      target.getElementsByTagName(&#039;p&#039;)[0].appendChild(loadingImg);
      target.ajaxInProgress = true;
  }
  
  function addFeedback(responseXML, target) {
      var loadingImg = target.getElementsByTagName(&#039;img&#039;)[0];
      loadingImg.parentNode.className += &#039; status&#039;;
      var feedbackText = &#039; We successfully received your request.  Thank you for your submission, someone from our staff will be in touch with you shortly.&#039;;
      var feedbackSpan = document.createElement(&#039;span&#039;);
      // feedbackSpan.className = &#039;message status&#039;;
      feedbackSpan.appendChild(document.createTextNode(feedbackText));
      loadingImg.parentNode.replaceChild(feedbackSpan, loadingImg);

      // Free up the form to go again
      target.ajaxInProgress = false;
      
      // Disable form inputs
      target.getElementsByTagName(&#039;select&#039;)[0].disabled = true;
      target.getElementsByTagName(&#039;textarea&#039;)[0].disabled = true;
      var inputFields = document.getElementsByTagName(&#039;input&#039;);
      for (var i = 0; i &lt; inputFields.length; i++) {
      target.getElementsByTagName(&#039;input&#039;)[i].disabled = true;
      }
  }
--&gt;
 &lt;/script&gt;
 

&lt;div class=&quot;content-box&quot;&gt;
	&lt;div class=&quot;content-box-header&quot;&gt;
		Contact ScrumWorks&lt;span class=&quot;reg&quot;&gt;&amp;#0174;&lt;/span&gt; Pro Customer Support
	&lt;/div&gt;
	&lt;div class=&quot;content-box-body&quot;&gt;
	
		Please contact us if you can’t find answers to your questions in our 
		&lt;a href=&quot;/scrumworks/pro/support/solutions-center&quot;&gt;solutions&lt;/a&gt; center.  
		Submit a support case using the form below and a Danube representative will be in 
		touch with you shortly.  Alternatively, you may email Danube support directly at: 
		&lt;a href=&quot;mailto:support@danube.com?subject=ScrumWorks%20Pro%20Support%20Request%20&amp;body=Company%20Name:%20%0ABuild:%20&quot;&gt;
			support@danube.com
		&lt;/a&gt;
	&lt;/div&gt;
	
	&lt;div class=&quot;content-box-footer&quot;&gt;
	&lt;/div&gt;
&lt;/div&gt;

&lt;br /&gt;
		
&lt;div class=&quot;content-box&quot;&gt;
	&lt;div class=&quot;content-box-header&quot;&gt;
		Your Contact Information:
	&lt;/div&gt;
	&lt;div class=&quot;content-box-body&quot;&gt;
		&lt;form id=&quot;ajaxify&quot; name=&quot;ajaxify&quot; class=&quot;ajaxify&quot; action=&quot;http://www.salesforce.com/servlet/servlet.WebToCase?encoding=UTF-8&quot; method=&quot;post&quot;&gt;
			
		&lt;div class=&quot;form-item&quot;&gt;  					
			Case ID: &lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt;
			&lt;br /&gt;
			&lt;input class=&quot;form-text&quot; type=&quot;text&quot;  id=&quot;00N50000001Mrl9&quot; size=&quot;40&quot; name=&quot;00N50000001Mrl9&quot; maxlength=&quot;13&quot; value=&quot;&quot; /&gt;
			&lt;div class=&quot;description&quot;&gt;
				Found in ScrumWorks Pro Desktop Client &gt; Help &gt; About
			&lt;/div&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;  					
			First Name: &lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt;
			&lt;br /&gt;
			&lt;input class=&quot;form-text&quot; type=&quot;text&quot; id=&quot;firstname&quot; name=&quot;first_name&quot; maxlength=&quot;100&quot; size=&quot;40&quot; /&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;  					
			Last Name: &lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt; 
			&lt;br /&gt;
			&lt;input class=&quot;form-text&quot; type=&quot;text&quot; id=&quot;lastname&quot; name=&quot;last_name&quot; maxlength=&quot;100&quot; size=&quot;40&quot; /&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;
			E-mail: &lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt; 
			&lt;br /&gt;
			&lt;input class=&quot;form-text&quot; type=&quot;text&quot; id=&quot;email&quot; name=&quot;email&quot; maxlength=&quot;100&quot; size=&quot;40&quot; /&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;          					
			Telephone number: &lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt;
			&lt;br /&gt;
			&lt;input class=&quot;form-text&quot; type=&quot;text&quot; id=&quot;phone&quot; name=&quot;phone&quot; maxlength=&quot;100&quot; size=&quot;40&quot; /&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;
			Company: &lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt;
			&lt;br /&gt;
			&lt;input type=&quot;text&quot; id=&quot;company&quot; name=&quot;company&quot; maxlength=&quot;100&quot; class=&quot;form-text&quot; size=&quot;40&quot; value=&quot;&quot; /&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt; 
			Case Reason: &lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt;
			&lt;br /&gt;    					
			&lt;select class=&quot;form-select&quot; id=&quot;reason&quot; name=&quot;reason&quot;&gt;
				&lt;option value=&quot;&quot;&gt;--Select One--&lt;/option&gt;
				&lt;option value=&quot;Feature Request&quot;&gt;Feature Request&lt;/option&gt;
				&lt;option value=&quot;Software Error&quot;&gt;Software Error&lt;/option&gt;
				&lt;option value=&quot;Bug Report&quot;&gt;Bug Report&lt;/option&gt;
				&lt;option value=&quot;Instructions Not Clear&quot;&gt;Instructions Not Clear&lt;/option&gt;
				&lt;option value=&quot;Installation Related&quot; &gt;Installation Related&lt;/option&gt;
				&lt;option value=&quot;Performance Issues&quot; &gt;Performance Issues&lt;/option&gt;
				&lt;option value=&quot;Other ScrumWorks&quot;&gt;Other&lt;/option&gt;
			&lt;/select&gt;&lt;br /&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;
			Describe the severity of your issue:&lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt;
			&lt;br /&gt;
			&lt;select class=&quot;form-select&quot; id=&quot;priority&quot; name=&quot;priority&quot;&gt;
				&lt;option value=&quot;&quot;&gt;--Select One--&lt;/option&gt;
				&lt;option value=&quot;Outage&quot;&gt;Work Blocked - All Users&lt;/option&gt;
				&lt;option value=&quot;Critical&quot;&gt;Work Blocked - Some Users&lt;/option&gt;
				&lt;option value=&quot;Important&quot;&gt;Urgent Request&lt;/option&gt;
				&lt;option value=&quot;Needed Sometime Soon&quot;&gt;Low Severity&lt;/option&gt;
			&lt;/select&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;
			Subject:&lt;br /&gt;
			&lt;input class=&quot;form-text&quot; maxlength=&quot;255&quot; type=&quot;text&quot; id=&quot;subject&quot; size=&quot;40&quot; name=&quot;subject&quot; value=&quot;ScrumWorks Pro Support Request&quot; /&gt;
			&lt;br /&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;
			Build Number: 
			&lt;br /&gt;
			&lt;input class=&quot;form-text&quot; maxlength=&quot;255&quot; type=&quot;text&quot; id=&quot;build&quot; size=&quot;6&quot; name=&quot;build&quot; value=&quot;&quot; /&gt;
			&lt;br /&gt;
			&lt;div class=&quot;description&quot;&gt;
				Found in ScrumWorks Pro Desktop Client &gt; Help &gt; About&lt;br /&gt;
				Last 5 characters only, for example: r7236
			&lt;/div&gt;
		&lt;/div&gt;
		
		&lt;div class=&quot;form-item&quot;&gt;    				  
			&lt;br /&gt;
			Please provide any important details below.  Please indicate anything that will 
			help us to reproduce your issue like your operating system, browser, 
			Java version number, and detailed reproduction steps:
			&lt;br /&gt;
			&lt;textarea class=&quot;form-text&quot; name=&quot;description&quot; cols=&quot;45&quot; rows=&quot;7&quot;&gt;&lt;/textarea&gt;
		&lt;/div&gt;
		
				
		&lt;div class=&quot;form-item&quot;&gt;
			&lt;input type=&quot;hidden&quot;  id=&quot;external&quot; name=&quot;external&quot; value=&quot;1&quot; /&gt;
			&lt;input type=&quot;hidden&quot; name=&quot;retURL&quot; value=&quot;http://danube.com/crss/node/716?status=s&quot; /&gt;
			&lt;input type=&quot;hidden&quot; name=&quot;orgid&quot; value=&quot;00D500000006xMR&quot; /&gt;
			&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Submit&quot; class=&quot;form-submit&quot; /&gt;
		&lt;/div&gt;
		
		
		&lt;div id=&quot;message-man&quot;&gt;
			&lt;p class=&quot;message&quot;&gt;&lt;/p&gt;
		&lt;/div&gt;

		&lt;/form&gt;
		
		&lt;div class=&quot;description&quot;&gt;
			&lt;span class=&quot;form-required&quot; title=&quot;This field is required.&quot;&gt;*&lt;/span&gt; indicates a required field.
			&lt;br /&gt;&lt;br /&gt;
			While Danube strives for excellence in response times, please allow up to two business days during peak support times.  
			Please also refer to our 	&lt;a href=&quot;/scrumworks/pro/support/holiday-calendar&quot;&gt;holiday calendar	&lt;/a&gt; 
			for scheduled interruptions to support services.
			&lt;br /&gt;&lt;br /&gt;
			Please read our &lt;a href=&quot;contact_privacy.htm&quot;&gt;privacy and confidentiality statement&lt;/a&gt;. 
		&lt;/div&gt;
		
	&lt;/div&gt;
	&lt;div class=&quot;content-box-footer&quot;&gt;
	&lt;/div&gt;
&lt;/div&gt;</description>
 <comments>http://danube.com/scrumworks/pro/support/submit#comment</comments>
 <pubDate>Fri, 12 Jan 2007 21:07:24 -0600</pubDate>
 <dc:creator>nickw</dc:creator>
 <guid isPermaLink="false">716 at http://danube.com</guid>
</item>
</channel>
</rss>
