function DAAdminUserLookup(userId, email, profileId) {
        
	var language = "";
	var country = "";

    if (userId == null) {
        userId = "";
    }
    if (email == null) {
        email = "";
    }
    if (profileId == null) {
        profileId = "";
    }
    
    if( language_support == 'y' || language_support == 'Y') {
        language = getLanguage();
        country = getCountry();	    
    }
    else {
        language = "en";
        country = "US";
    }
        
    link = cfserver + "/hppcf/da/adminuserlookup.do?" +
           "userid=" + userId  +
           "&email=" +  email + 
           "&profileid=" +  profileId +                
           "&hpappid=" + application_id + "&applandingpage=" +
           escape(applandingpage) + "&preview=" + preview + 
           "&lang=" + language + "&cc=" + country;
    location.href = link;
}


function DAAdminViewUser(userId, email, profileId) {
        
	var language = "";
	var country = "";

    if (userId == null) {
        userId = "";
    }
    if (email == null) {
        email = "";
    }
    if (profileId == null) {
        profileId = "";
    }
    
    if( language_support == 'y' || language_support == 'Y') {
        language = getLanguage();
        country = getCountry();	    
    }
    else {
        language = "en";
        country = "US";
    }
        
    link = cfserver + "/hppcf/da/adminviewuser.do?" +
           "userid=" + userId  +
           "&email=" +  email + 
           "&profileid=" +  profileId +            
           "&hpappid=" + application_id + "&applandingpage=" +
           escape(applandingpage) + "&preview=" + preview + 
           "&lang=" + language + "&cc=" + country;
    location.href = link;
}