$(document).ready(function() {

    function torxPart( 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];
    };
    
    _partNumber = torxPart('part');
    if(_partNumber != ""){
        numOfFields = document.getElementsByTagName('input').length;
        for(i = 0; i < numOfFields; i++)
        {
            document.getElementsByTagName('input')[i].value = "";
        }
        
        document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').value = "";
        fillField(_partNumber);
    }
    
});

function fillField(_part){
    checkAlreadyThere = document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').value;
    if(checkAlreadyThere.search(_part) == -1){
        if(document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form')){
            if(document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').value == "")
            {
                document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').value = _part;
                document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').select();
                document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').blur();
                flashBackground();
            }
            else
            {
                document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').value = document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').value + "\n" + _part;
                document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').select();
                document.getElementById('ctl00_ctl00_ctl00_ContentPlaceHolderDefault_content_field_Products_blackstoneMediaContactForm_QUOTE_contact_form').blur();
                flashBackground();
            }
        }
    }
}

function flashBackground(){
        $('.quoteForm').css('background', '#FF8A00');
        setTimeout("$('.quoteForm').css('background', '#FFC900')", 200);
        setTimeout("$('.quoteForm').css('background', '#FF8A00')", 400);
        setTimeout("$('.quoteForm').css('background', '#FFC900')", 600);
}
