// JavaScript Document
var mail=gup('go');

// JavaScript Document
var mail=gup('go');

if(mail=='firstform')
alert("Please complete the 2nd stage of the form also.");
else if(mail=='error')
alert("Error in sending mail. Your mail was not sent.")

if(mail=='success')
alert("Thank you for completing the questionnaire. We will get back to you soon.");
else if(mail=='error')
alert("Error in sending mail. Your mail was not sent.")

if(mail=='committed')
alert("Thank you for completing the questionnaire. We will get back to you soon.");
else if(mail=='error')
alert("Error in sending mail. Your mail was not sent.")

if(mail=='valid')
alert("Mail has been sent successfully");
else if(mail=='error')
alert("Error in sending mail. Your mail was not sent.");




function gup( name )
{
  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  var regexS = "[\\?&]"+name+"=([^&#]*)";
  var regex = new RegExp( regexS );
  var results = regex.exec( window.location.href );
  if( results == null )
    return "";
  else
    return results[1];
}


