function initPage()
{
	// Get the recipient name.
	var name = 'recipientName';
 	var start=location.search.indexOf("?"+name+"=");
  	if (start<0) start=location.search.indexOf("&"+name+"=");
  	if (start<0) return '';
  	start += name.length+2;
  	var end=location.search.indexOf("&",start)-1;
  	if (end<0) end=location.search.length;
  	var result='';
  	for(var i=start;i<=end;i++) {
    	var c=location.search.charAt(i);
    	result=result+(c=='+'?' ':c);
  	}
  	recipientName = unescape(result);	
	
	// Get the recipient dropdown.
	var recipientDropdown = document.getElementById("CEL_0_102370");
	// Set the recipient dropdown to the person's name.	
    for (var i = 0; i < recipientDropdown.options.length; i++) {
        if (recipientDropdown.options[i].value == recipientName) {
            recipientDropdown.selectedIndex = i;
            return;
        } else {
        	recipientDropdown.selectedIndex = 1;
        }
	}
}

if (window.addEventListener) window.addEventListener("load", initPage, false);
else if (window.attachEvent) window.attachEvent("onload", initPage);
